Skip to content
VS Code

algovoi mcp server for VS Code

io.github.chopmob-cloud/algovoi-mcp-server

AlgoVoi crypto payments via MCP: USDC + native on Algorand, VOI, Hedera, Stellar.

client:VS Code transport:stdio runtime:npm

Install algovoi mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "algovoi-api-key",
      "description": "ALGOVOI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "algovoi-api-base",
      "description": "ALGOVOI_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "algovoi-tenant-id",
      "description": "ALGOVOI_TENANT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "algovoi-payout-address",
      "description": "ALGOVOI_PAYOUT_ADDRESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "algovoi-webhook-secret",
      "description": "ALGOVOI_WEBHOOK_SECRET",
      "password": true
    }
  ],
  "servers": {
    "algovoi-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@algovoi/mcp-server"
      ],
      "env": {
        "ALGOVOI_API_KEY": "${input:algovoi-api-key}",
        "ALGOVOI_API_BASE": "${input:algovoi-api-base}",
        "ALGOVOI_TENANT_ID": "${input:algovoi-tenant-id}",
        "ALGOVOI_PAYOUT_ADDRESS": "${input:algovoi-payout-address}",
        "ALGOVOI_WEBHOOK_SECRET": "${input:algovoi-webhook-secret}"
      }
    }
  }
}

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

algovoi mcp server in other clients