LinkedIn Jobs MCP Server

LinkedIn Jobs MCP Server

Enables users to search LinkedIn's public job listings with advanced filters like location, salary, and experience level. It allows MCP-compatible clients to retrieve real-time job opportunities without requiring LinkedIn authentication or API keys.

Category
访问服务器

README

LinkedIn Jobs MCP Server

A Model Context Protocol (MCP) server that enables Claude and other MCP clients to search LinkedIn jobs directly. Built with TypeScript and the official MCP SDK.

Features

  • 🔍 Advanced Job Search: Search LinkedIn jobs with multiple filters
  • 🎯 Smart Filtering: Filter by location, job type, experience level, salary, and more
  • Fast & Reliable: Uses the proven linkedin-jobs-api package
  • 🔧 Easy Integration: Works with Claude Desktop, Claude Code, and any MCP-compatible client

Installation

Prerequisites

  • Node.js 18 or higher
  • npm or yarn

Setup

  1. Clone or download this repository
cd linkedin-mcp-server
  1. Install dependencies
npm install
  1. Build the server
npm run build

Usage with Claude Desktop

Configure Claude Desktop

  1. Open your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the server configuration:

{
  "mcpServers": {
    "linkedin-jobs": {
      "command": "node",
      "args": [
        "/ABSOLUTE/PATH/TO/linkedin-mcp-server/build/index.js"
      ]
    }
  }
}

Important: Replace /ABSOLUTE/PATH/TO/ with the actual path to your project directory.

  1. Restart Claude Desktop to load the new server

Using npx (Alternative)

You can also run the server using npx after publishing to npm:

{
  "mcpServers": {
    "linkedin-jobs": {
      "command": "npx",
      "args": [
        "-y",
        "linkedin-jobs-mcp-server"
      ]
    }
  }
}

Available Tools

search_linkedin_jobs

Search for jobs on LinkedIn with advanced filtering options.

Required Parameters:

  • keyword (string): Job title or keywords to search for
  • location (string): Location to search in (city, state, or "remote")

Optional Parameters:

  • dateSincePosted (enum): "past month", "past week", "24hr"
  • jobType (enum): "full time", "part time", "contract", "temporary", "volunteer", "internship"
  • remoteFilter (enum): "on site", "remote", "hybrid"
  • salary (enum): "40000", "60000", "80000", "100000", "120000" (minimum salary)
  • experienceLevel (enum): "internship", "entry level", "associate", "senior", "director", "executive"
  • limit (string): Number of results (1-100, default: "10")
  • sortBy (enum): "recent", "relevant"
  • page (string): Page number for pagination (default: "0")

Example Queries

Once configured, you can ask Claude things like:

"Search for software engineer jobs in San Francisco"

"Find remote product manager positions posted in the past week"

"Look for entry-level data analyst jobs in New York with a minimum salary of $80,000"

"Show me senior full-time positions for machine learning engineers in Seattle"

Example Response

Found 10 job(s) for "software engineer" in "San Francisco":

1. Senior Software Engineer
   Company: Tech Corp
   Location: San Francisco, CA
   Posted: 2 days ago
   Salary: $150,000 - $200,000
   Apply: https://linkedin.com/jobs/view/...

2. Full Stack Software Engineer
   Company: Startup Inc
   Location: San Francisco, CA (Hybrid)
   Posted: 1 week ago
   Apply: https://linkedin.com/jobs/view/...

...

Development

Build

npm run build

Watch mode (for development)

npm run watch

Test with MCP Inspector

The MCP Inspector is a useful tool for testing your server:

npm run inspector

This will open a web interface where you can test the server's tools interactively.

How It Works

This MCP server:

  1. Receives requests from Claude (or any MCP client) via the stdio transport
  2. Validates parameters using Zod schemas
  3. Calls the LinkedIn Jobs API (via linkedin-jobs-api package)
  4. Formats results into readable text responses
  5. Returns data back to the client

The server uses web scraping through the linkedin-jobs-api package, which accesses LinkedIn's public job listings. No authentication or API keys are required.

Architecture

Claude Desktop (MCP Client)
        ↓
    stdio transport
        ↓
LinkedIn MCP Server (This project)
        ↓
linkedin-jobs-api package
        ↓
LinkedIn public job listings

Troubleshooting

Server not appearing in Claude Desktop

  1. Check that the path in your config is absolute (not relative)
  2. Ensure the build directory exists (npm run build)
  3. Restart Claude Desktop completely
  4. Check Claude Desktop logs for errors

No results returned

  1. Try broader search terms
  2. Remove filters to see if you get results
  3. Check if LinkedIn has jobs for your search criteria
  4. Try different locations

Build errors

  1. Ensure you have Node.js 18+ installed
  2. Delete node_modules and build directories
  3. Run npm install again
  4. Run npm run build

Technical Details

  • MCP SDK Version: 1.0.4
  • Transport: stdio (standard input/output)
  • Language: TypeScript
  • Runtime: Node.js 18+
  • Data Source: LinkedIn public job listings (via linkedin-jobs-api)

Limitations

  • Rate limiting: The underlying API may have rate limits
  • Public data only: Only accesses publicly available job listings
  • No authentication: Does not require or support LinkedIn authentication
  • Scraping-based: Uses web scraping, which means it could break if LinkedIn changes their HTML structure

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - feel free to use this in your own projects!

Related Projects

Support

If you encounter issues:

  1. Check the Troubleshooting section
  2. Review the MCP documentation at https://modelcontextprotocol.io
  3. Open an issue on GitHub with details about your problem

Acknowledgments

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选