Skip to content
VS Code

Job Search MCP for VS Code

io.github.servation/job-search-mcp

Claude searches real job boards, scores each job 0-100 for fit, and shows a ranked board.

client:VS Code transport:stdio runtime:npm

Install Job Search MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "job-search-mcp-data",
      "description": "JOB_SEARCH_MCP_DATA",
      "password": true
    },
    {
      "type": "promptString",
      "id": "linkedin-li-at",
      "description": "LINKEDIN_LI_AT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "linkedin-jsessionid",
      "description": "LINKEDIN_JSESSIONID",
      "password": true
    }
  ],
  "servers": {
    "job-search-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@servation/job-search-mcp"
      ],
      "env": {
        "JOB_SEARCH_MCP_DATA": "${input:job-search-mcp-data}",
        "LINKEDIN_LI_AT": "${input:linkedin-li-at}",
        "LINKEDIN_JSESSIONID": "${input:linkedin-jsessionid}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Job Search MCP in other clients