Skip to content
VS Code

bazaar mcp for VS Code

io.github.opspawn/bazaar-mcp

x402 micropayment-powered developer tools: screenshots, AI analysis, PDFs, code scanning

client:VS Code transport:stdio runtime:npm

Install bazaar mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "x402-payment-token",
      "description": "X402_PAYMENT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bazaar-gateway-url",
      "description": "BAZAAR_GATEWAY_URL",
      "password": true
    }
  ],
  "servers": {
    "bazaar-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "bazaar-mcp"
      ],
      "env": {
        "X402_PAYMENT_TOKEN": "${input:x402-payment-token}",
        "BAZAAR_GATEWAY_URL": "${input:bazaar-gateway-url}"
      }
    }
  }
}

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

bazaar mcp in other clients