MCP server for LinkedIn automation
## LinkedIn MCP Server: Professional Network Integration The **LinkedIn MCP Server** integrates the world's largest professional network directly into Google Antigravity, enabling AI assistants to manage professional presence, post content, and access network data programmatically. This integration brings professional networking automation to your development workflow. ### Why LinkedIn MCP? - **Professional Reach**: Access to over 900 million professionals worldwide - **Content Publishing**: Share articles, posts, and updates with your professional network - **Company Pages**: Manage company presence and employer branding content - **Network Insights**: Access connection data and professional network analytics - **Job Integration**: Interact with job postings and recruitment workflows ### Key Features #### 1. Content Sharing ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Post a professional update about our new product launch with relevant hashtags" }], tools=[{ "name": "linkedin_post", "description": "Share LinkedIn content" }] ) ``` #### 2. Profile Access ```python # Get profile information response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get my LinkedIn profile summary and recent activity" }], tools=[{"name": "linkedin_profile", "description": "Access profile data"}] ) ``` #### 3. Company Updates ```python # Manage company page response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Post an update to our company LinkedIn page about the new hire announcement" }], tools=[{"name": "linkedin_company", "description": "Company page management"}] ) ``` #### 4. Network Insights ```python # Analyze network response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get insights on my network connections in the tech industry" }], tools=[{"name": "linkedin_network", "description": "Network analytics"}] ) ``` ### Configuration ```json { "mcpServers": { "linkedin": { "command": "npx", "args": ["-y", "@anthropic/mcp-linkedin"], "env": { "LINKEDIN_ACCESS_TOKEN": "your-linkedin-access-token" } } } } ``` ### Use Cases **Thought Leadership**: Automate professional content publishing and engagement. **Employer Branding**: Manage company page content and recruitment messaging. **Network Analysis**: Understand and leverage professional network connections. **Career Development**: Track professional visibility and engagement metrics. The LinkedIn MCP Server brings professional networking automation directly into your development workflow, enabling strategic professional presence management.
{
"mcpServers": {
"linkedin": {
"mcpServers": {
"linkedin": {
"env": {
"LINKED_API_TOKEN": "YOUR_LINKEDIN_TOKEN"
},
"args": [
"-y",
"linkedin-mcp-server"
],
"command": "npx"
}
}
}
}
}