Skip to content
VS Code

b2bleads mcp for VS Code

io.github.gtovtya/b2bleads-mcp

Search and enrich B2B business leads by industry and city.

client:VS Code transport:stdio runtime:npm

Install b2bleads mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "b2bleads-api-key",
      "description": "B2BLEADS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "b2bleads-api-url",
      "description": "B2BLEADS_API_URL",
      "password": true
    }
  ],
  "servers": {
    "b2bleads-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "b2bleads-mcp"
      ],
      "env": {
        "B2BLEADS_API_KEY": "${input:b2bleads-api-key}",
        "B2BLEADS_API_URL": "${input:b2bleads-api-url}"
      }
    }
  }
}

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

b2bleads mcp in other clients