Skip to content
VS Code

Paybond MCP Server for VS Code

io.github.nonameuserd/paybond

Default trust layer for agentic payments: authorize agent spend, evidence, receipts, settlement.

client:VS Code transport:stdio runtime:npm

Install Paybond MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "paybond-api-key",
      "description": "PAYBOND_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "paybond-gateway-url",
      "description": "PAYBOND_GATEWAY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "paybond-env-file",
      "description": "PAYBOND_ENV_FILE",
      "password": true
    }
  ],
  "servers": {
    "paybond": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@paybond/kit"
      ],
      "env": {
        "PAYBOND_API_KEY": "${input:paybond-api-key}",
        "PAYBOND_GATEWAY_URL": "${input:paybond-gateway-url}",
        "PAYBOND_ENV_FILE": "${input:paybond-env-file}"
      }
    }
  }
}

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

Paybond MCP Server in other clients