Skip to content
VS Code

leadpipe for VS Code

io.github.leadpipe-com/leadpipe

Official MCP server for Leadpipe intent and data APIs.

client:VS Code transport:stdio runtime:npm

Install leadpipe in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "leadpipe-api-key",
      "description": "LEADPIPE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "leadpipe-base-url",
      "description": "LEADPIPE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "leadpipe": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@leadpipe/mcp"
      ],
      "env": {
        "LEADPIPE_API_KEY": "${input:leadpipe-api-key}",
        "LEADPIPE_BASE_URL": "${input:leadpipe-base-url}"
      }
    }
  }
}

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

leadpipe in other clients