Skip to content
VS Code

leadloadz for VS Code

io.github.ali1041/leadloadz

B2B lead search and email verification MCP server

client:VS Code transport:stdio runtime:npm

Install leadloadz in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "leadloadz-api-key",
      "description": "LEADLOADZ_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "leadloadz-api-base",
      "description": "LEADLOADZ_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "leadloadz": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@leadloadz/mcp-server"
      ],
      "env": {
        "LEADLOADZ_API_KEY": "${input:leadloadz-api-key}",
        "LEADLOADZ_API_BASE": "${input:leadloadz-api-base}"
      }
    }
  }
}

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

leadloadz in other clients