Skip to content
VS Code

ryvo gateway for VS Code

io.github.ryvonetwork/ryvo-gateway

MCP server for Ryvo Gateway x402, Helius Wallet, and Tokens API market data.

client:VS Code transport:stdio runtime:npm

Install ryvo gateway in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ryvo-gateway-base-url",
      "description": "RYVO_GATEWAY_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ryvo-signer-command",
      "description": "RYVO_SIGNER_COMMAND",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ryvo-wallet-profile",
      "description": "RYVO_WALLET_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ryvo-payment-max-amount-usd",
      "description": "RYVO_PAYMENT_MAX_AMOUNT_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ryvo-payment-daily-limit-usd",
      "description": "RYVO_PAYMENT_DAILY_LIMIT_USD",
      "password": true
    }
  ],
  "servers": {
    "ryvo-gateway": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ryvonetwork/gateway-mcp"
      ],
      "env": {
        "RYVO_GATEWAY_BASE_URL": "${input:ryvo-gateway-base-url}",
        "RYVO_SIGNER_COMMAND": "${input:ryvo-signer-command}",
        "RYVO_WALLET_PROFILE": "${input:ryvo-wallet-profile}",
        "RYVO_PAYMENT_MAX_AMOUNT_USD": "${input:ryvo-payment-max-amount-usd}",
        "RYVO_PAYMENT_DAILY_LIMIT_USD": "${input:ryvo-payment-daily-limit-usd}"
      }
    }
  }
}

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

ryvo gateway in other clients