Skip to content
VS Code

erabi for VS Code

io.github.hmakt99/erabi

Check paid x402 APIs before your agent spends: signed uptime/price attestations. Zero-config join.

client:VS Code transport:stdio runtime:npm

Install erabi in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "erabi-registry-url",
      "description": "ERABI_REGISTRY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "erabi-exchange-url",
      "description": "ERABI_EXCHANGE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "erabi-attribution-url",
      "description": "ERABI_ATTRIBUTION_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "erabi-reputation-url",
      "description": "ERABI_REPUTATION_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "erabi-key-dir",
      "description": "ERABI_KEY_DIR",
      "password": true
    }
  ],
  "servers": {
    "erabi": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "erabi-mcp"
      ],
      "env": {
        "ERABI_REGISTRY_URL": "${input:erabi-registry-url}",
        "ERABI_EXCHANGE_URL": "${input:erabi-exchange-url}",
        "ERABI_ATTRIBUTION_URL": "${input:erabi-attribution-url}",
        "ERABI_REPUTATION_URL": "${input:erabi-reputation-url}",
        "ERABI_KEY_DIR": "${input:erabi-key-dir}"
      }
    }
  }
}

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

erabi in other clients