Skip to content
VS Code

mcp for VS Code

com.walletbureau/mcp

Risk score for a Base wallet before your agent pays it: 0-100, verdict and explained flags.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "walletbureau-api-key",
      "description": "WALLETBUREAU_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x402-private-key",
      "description": "X402_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x402-max-price-usd",
      "description": "X402_MAX_PRICE_USD",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@walletbureau/mcp"
      ],
      "env": {
        "WALLETBUREAU_API_KEY": "${input:walletbureau-api-key}",
        "X402_PRIVATE_KEY": "${input:x402-private-key}",
        "X402_MAX_PRICE_USD": "${input:x402-max-price-usd}"
      }
    }
  }
}

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

mcp in other clients