Description

A Model Context Protocol server library that gives LLMs access to information about a candidate.

Installation

npx -y node-candidate-mcp-server
npm install node-candidate-mcp-server
git clone https://github.com/jhgaylor/node-candidate-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "node-candidate-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "node-candidate-mcp-server"
      ]
    }
  }
}