MCP Server for LinkedIn
A MCP server for LinkedIn to seamlessly apply for jobs🚀
Overview
MCP Server for LinkedIn is a Model Context Protocol (MCP) server designed to facilitate seamless job applications and feed searches on LinkedIn.
To use the MCP Server, clone the repository, adjust the local path in the configuration, and run the server using the provided commands. You can test it using the MCP-client.
- Profile retrieval to fetch user profiles and key information. - Advanced job search functionality with customizable parameters. - Retrieval of LinkedIn feed posts with pagination support. - Resume analysis to extract key information from PDF resumes.
- Applying for jobs on LinkedIn using automated processes.
- Searching for job opportunities based on specific criteria.
- Analyzing resumes to match job requirements.
- Retrieving and displaying LinkedIn feed posts for updates.
Add to your AI client
Use these steps to connect MCP Server for LinkedIn in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"linkedin-mcp-hritik003": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linkedin-mcp-hritik003"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"linkedin-mcp-hritik003": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linkedin-mcp-hritik003"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"linkedin-mcp-hritik003": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linkedin-mcp-hritik003"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"linkedin-mcp-hritik003": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linkedin-mcp-hritik003"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"linkedin-mcp-hritik003": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linkedin-mcp-hritik003"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"linkedin-mcp-hritik003": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linkedin-mcp-hritik003"
]
}
}
}FAQ
Can I use this server for any job application?
Yes! It is designed to work with LinkedIn job applications.
Is there a limit to the number of profiles I can retrieve?
No, but be mindful of LinkedIn's API usage policies.
How do I configure the server?
Adjust the `<LOCAL_PATH>` in the configuration file after cloning the repo.