Skip to content
VS Code

boo x402 mcp for VS Code

io.github.lucle87/boo-x402-mcp

Pay-per-call crypto data for AI agents. USDC on Base via x402. No API key.

client:VS Code transport:stdio runtime:npm

Install boo x402 mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wallet-private-key",
      "description": "WALLET_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "max-usd-per-call",
      "description": "MAX_USD_PER_CALL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "max-usd-total",
      "description": "MAX_USD_TOTAL",
      "password": true
    }
  ],
  "servers": {
    "boo-x402-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "boo-x402-mcp"
      ],
      "env": {
        "WALLET_PRIVATE_KEY": "${input:wallet-private-key}",
        "MAX_USD_PER_CALL": "${input:max-usd-per-call}",
        "MAX_USD_TOTAL": "${input:max-usd-total}"
      }
    }
  }
}

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

boo x402 mcp in other clients