Skip to content
VS Code

leadenrich mcp for VS Code

io.github.carsonroell-debug/leadenrich-mcp

Waterfall lead enrichment — cascades Apollo, Clearbit, and Hunter for max coverage

client:VS Code transport:stdio runtime:pypi

Install leadenrich mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apollo-api-key",
      "description": "APOLLO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clearbit-api-key",
      "description": "CLEARBIT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hunter-api-key",
      "description": "HUNTER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "leadenrich-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "leadenrich-mcp"
      ],
      "env": {
        "APOLLO_API_KEY": "${input:apollo-api-key}",
        "CLEARBIT_API_KEY": "${input:clearbit-api-key}",
        "HUNTER_API_KEY": "${input:hunter-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

leadenrich mcp in other clients