Skip to content
VS Code

BitBooth Agent Tools for VS Code

io.github.drock91/bitbooth-fetch

Discover BitBooth APIs for free, then buy capped x402 fetch, PageDelta, and wallet checks.

client:VS Code transport:stdio runtime:npm

Install BitBooth Agent Tools in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bitbooth-agent-key",
      "description": "BITBOOTH_AGENT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbooth-api-url",
      "description": "BITBOOTH_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbooth-chain-id",
      "description": "BITBOOTH_CHAIN_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbooth-payment-rail",
      "description": "BITBOOTH_PAYMENT_RAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbooth-xrpl-seed",
      "description": "BITBOOTH_XRPL_SEED",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbooth-max-per-call-usd",
      "description": "BITBOOTH_MAX_PER_CALL_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbooth-daily-limit-usd",
      "description": "BITBOOTH_DAILY_LIMIT_USD",
      "password": true
    }
  ],
  "servers": {
    "bitbooth-fetch": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bitbooth/mcp-fetch"
      ],
      "env": {
        "BITBOOTH_AGENT_KEY": "${input:bitbooth-agent-key}",
        "BITBOOTH_API_URL": "${input:bitbooth-api-url}",
        "BITBOOTH_CHAIN_ID": "${input:bitbooth-chain-id}",
        "BITBOOTH_PAYMENT_RAIL": "${input:bitbooth-payment-rail}",
        "BITBOOTH_XRPL_SEED": "${input:bitbooth-xrpl-seed}",
        "BITBOOTH_MAX_PER_CALL_USD": "${input:bitbooth-max-per-call-usd}",
        "BITBOOTH_DAILY_LIMIT_USD": "${input:bitbooth-daily-limit-usd}"
      }
    }
  }
}

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

BitBooth Agent Tools in other clients