Skip to content
VS Code

CallRail MCP for VS Code

io.github.pghdma/callrail-mcp

CallRail REST API v3: 57 tools for calls, leads, trackers, tags, users, and agency reporting.

client:VS Code transport:stdio runtime:pypi

Install CallRail MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "callrail-api-key",
      "description": "CALLRAIL_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "callrail-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "callrail-mcp"
      ],
      "env": {
        "CALLRAIL_API_KEY": "${input:callrail-api-key}"
      }
    }
  }
}

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

CallRail MCP in other clients