Skip to content
VS Code

BitBooth Seller Routes for VS Code

io.github.drock91/bitbooth-routes

Create private x402 seller routes, set prices, and route payouts directly to your wallets.

client:VS Code transport:stdio runtime:npm

Install BitBooth Seller Routes in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bitbooth-api-key",
      "description": "BITBOOTH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitbooth-base-url",
      "description": "BITBOOTH_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "bitbooth-routes": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bitbooth/mcp-routes"
      ],
      "env": {
        "BITBOOTH_API_KEY": "${input:bitbooth-api-key}",
        "BITBOOTH_BASE_URL": "${input:bitbooth-base-url}"
      }
    }
  }
}

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

BitBooth Seller Routes in other clients