Skip to content
VS Code

Stride20k x402 Data Gateway for VS Code

io.github.marysbrain/x402-gateway-mcp

x402 analytics feed + 20+ pay-per-call agent tools over x402 (data, LLM, risk), no accounts.

client:VS Code transport:stdio runtime:npm

Install Stride20k x402 Data Gateway in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wallet-private-key",
      "description": "WALLET_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "max-per-call-usd",
      "description": "MAX_PER_CALL_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "max-session-usd",
      "description": "MAX_SESSION_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gateway-url",
      "description": "GATEWAY_URL",
      "password": true
    }
  ],
  "servers": {
    "x402-gateway-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "x402-gateway-mcp"
      ],
      "env": {
        "WALLET_PRIVATE_KEY": "${input:wallet-private-key}",
        "MAX_PER_CALL_USD": "${input:max-per-call-usd}",
        "MAX_SESSION_USD": "${input:max-session-usd}",
        "GATEWAY_URL": "${input: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

Stride20k x402 Data Gateway in other clients