Skip to content
VS Code

ryvo protocol for VS Code

io.github.ryvonetwork/ryvo-protocol

MCP server for Ryvo Protocol state reads and prepare-only payment-channel actions.

client:VS Code transport:stdio runtime:npm

Install ryvo protocol in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "solana-devnet-rpc-url",
      "description": "SOLANA_DEVNET_RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ryvo-protocol-program-id",
      "description": "RYVO_PROTOCOL_PROGRAM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ryvo-protocol-devnet-usdc-token-id",
      "description": "RYVO_PROTOCOL_DEVNET_USDC_TOKEN_ID",
      "password": true
    }
  ],
  "servers": {
    "ryvo-protocol": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ryvonetwork/protocol-mcp"
      ],
      "env": {
        "SOLANA_DEVNET_RPC_URL": "${input:solana-devnet-rpc-url}",
        "RYVO_PROTOCOL_PROGRAM_ID": "${input:ryvo-protocol-program-id}",
        "RYVO_PROTOCOL_DEVNET_USDC_TOKEN_ID": "${input:ryvo-protocol-devnet-usdc-token-id}"
      }
    }
  }
}

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

ryvo protocol in other clients