- Node.js 16+
- LinkedIn Developer Account
- MCP-Compatible LLM (Claude, OpenAI, etc.)
- Go to LinkedIn Developer Portal
- Create a new application
- Obtain Client ID and Client Secret
Important: For detailed instructions on obtaining access tokens and authentication for LinkedIn API, refer to the official documentation: Getting Access to LinkedIn API
git clone https://github.com/Dishant27/linkedin-mcp-server.git
cd linkedin-mcp-server
npm install
Create a .env
file in the project root:
LINKEDIN_CLIENT_ID=your_client_id_here
LINKEDIN_CLIENT_SECRET=your_client_secret_here
{
"mcpServers": {
"linkedin": {
"command": "node",
"args": ["/absolute/path/to/linkedin-mcp-server/dist/index.js"],
"env": {
"LINKEDIN_CLIENT_ID": "your_client_id",
"LINKEDIN_CLIENT_SECRET": "your_client_secret"
}
}
}
}
{
"tools": [
{
"name": "search-people",
"description": "Search for LinkedIn profiles",
"parameters": {
"type": "object",
"properties": {
"keywords": {
"type": "string",
"description": "Keywords to search for in profiles"
},
"currentCompany": {
"type": "array",
"items": {"type": "string"},
"description": "Filter by current company"
},
"industries": {
"type": "array",
"items": {"type": "string"},
"description": "Filter by industries"
},
"location": {
"type": "string",
"description": "Filter by location"
}
}
}
},
{
"name": "get-profile",
"description": "Retrieve detailed LinkedIn profile information",
"parameters": {
"type": "object",
"properties": {
"publicId": {
"type": "string",
"description": "Public ID of the LinkedIn profile"
},
"urnId": {
"type": "string",
"description": "URN ID of the LinkedIn profile"
}
}
}
}
]
}
- Start the MCP Server:
npm run build
npm start
- Example LLM Interactions:
> Find software engineers in San Francisco working at tech companies
# The LLM will use the search-people tool to:
# 1. Search LinkedIn profiles
# 2. Filter by location (San Francisco)
# 3. Filter by industry (Technology)
# 4. Return relevant profile details
Check out the detailed article explaining the concept and implementation:
LinkedInMCP is an innovative Model Context Protocol (MCP) server designed to transform how developers interact with LinkedIn's API. Born from the need for more flexible and powerful LinkedIn data integration, this project provides a robust, extensible framework for advanced LinkedIn data retrieval and interaction.
Recognizing the limitations of traditional LinkedIn API approaches, this solution creates a more intelligent, context-aware method of working with professional network data.
- Intelligent Context Management: Leverage MCP's advanced context handling
- Secure, Typed Interactions: Type-safe LinkedIn API interactions
- Extensible Architecture: Easy to expand and customize
- Standardized Protocol: Follows Model Context Protocol specifications
- TypeScript
- Model Context Protocol
- LinkedIn API
- OAuth 2.0
- Zod for Type Validation
- Axios for HTTP Requests
- Advanced People Search
- Detailed Profile Retrieval
- Job Market Intelligence
- Messaging Capabilities
- Secure Authentication Workflow
LinkedInMCP enables powerful applications for business settings:
- Candidate Sourcing: Find qualified candidates matching specific skill and experience criteria
- Talent Pool Analysis: Map talent distribution across industries and geographies
- Outreach Automation: Streamline initial contact with potential candidates
- Competitive Intelligence: Understand recruitment patterns at competitor organizations
- Lead Generation: Identify decision-makers at target companies
- Account-Based Marketing: Build comprehensive profiles of key accounts
- Relationship Mapping: Visualize connection networks within organizations
- Market Penetration Analysis: Track industry adoption of products or services
- Industry Trends: Monitor employment shifts across sectors
- Skill Demand Analysis: Track emerging skills and technologies
- Organizational Structure Insights: Map reporting relationships and team compositions
- Geographic Movement Patterns: Understand talent migration between regions
- CRM Synchronization: Update contact data from LinkedIn to CRM systems
- ATS Enhancement: Enrich applicant tracking systems with LinkedIn data
- Business Intelligence Tools: Feed LinkedIn data to dashboards and analytics platforms
- Custom Workflow Integration: Add LinkedIn capabilities to internal tools via API
The comprehensive security model of LinkedInMCP implements multiple layers of protection:
- OAuth 2.0 Implementation: Industry-standard token-based authentication
- Token Refresh Management: Automated handling of token expiration
- Credential Isolation: Environment-based secret management
- Rate Limiting: Protection against excessive API requests
- End-to-End Encryption: Secure data transmission
- Minimal Data Storage: Processing data without persistent storage
- Selective Information Return: Only returning requested data fields
- Automatic Data Sanitization: Preventing injection vulnerabilities
- GDPR Adherence: Configurable data handling for European compliance
- API Terms Enforcement: Built-in LinkedIn API usage policy compliance
- Audit Logging: Comprehensive activity tracking for compliance reporting
- Data Governance Tools: Simplifying regulatory compliance management
linkedin-mcp-server/
β
βββ src/
β βββ index.ts # Main server entry point
β βββ auth.ts # LinkedIn authentication handler
β βββ client.ts # LinkedIn API interaction client
β
βββ dist/ # Compiled JavaScript files
β βββ index.js
β βββ auth.js
β βββ client.js
β
βββ .env # Secret environment variables
βββ .env.example # Template for environment variables
βββ package.json # Project dependencies and scripts
βββ tsconfig.json # TypeScript configuration
βββ README.md # Project documentation
Inspired by the project? Contributions are welcome!
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Open a Pull Request
Distributed under the MIT License.
Disclaimer: This project is an independent innovation and is not officially affiliated with LinkedIn or Microsoft.