Skip to content
VS Code

housecall pro mcp for VS Code

io.github.hcpapi/housecall-pro-mcp

Independent MCP server for the Housecall Pro API: jobs, estimates, invoices, price book, schedule.

client:VS Code transport:stdio runtime:npm

Install housecall pro mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hcp-api-key",
      "description": "HCP_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hcp-read-only",
      "description": "HCP_READ_ONLY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hcp-toolsets",
      "description": "HCP_TOOLSETS",
      "password": true
    }
  ],
  "servers": {
    "housecall-pro-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "housecall-pro-mcp"
      ],
      "env": {
        "HCP_API_KEY": "${input:hcp-api-key}",
        "HCP_READ_ONLY": "${input:hcp-read-only}",
        "HCP_TOOLSETS": "${input:hcp-toolsets}"
      }
    }
  }
}

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

housecall pro mcp in other clients