Skip to content
VS Code

ClawPay MCP — Non-Custodial x402 Payments for AI Agents for VS Code

io.github.up2itnow0822/clawpay-mcp

Non-custodial x402 payments for AI agents. Sign locally, spend limits, Base network.

client:VS Code transport:stdio runtime:npm

Install ClawPay MCP — Non-Custodial x402 Payments for AI Agents in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agent-private-key",
      "description": "AGENT_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "base-rpc-url",
      "description": "BASE_RPC_URL",
      "password": true
    }
  ],
  "servers": {
    "clawpay-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "clawpay-mcp"
      ],
      "env": {
        "AGENT_PRIVATE_KEY": "${input:agent-private-key}",
        "BASE_RPC_URL": "${input:base-rpc-url}"
      }
    }
  }
}

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

ClawPay MCP — Non-Custodial x402 Payments for AI Agents in other clients