Skip to content
VS Code

ZebPay MCP Server for VS Code

io.github.zebpayrajesh/zebpay-mcp-server

MCP server for ZebPay crypto exchange — fetch prices, balances, and manage orders

client:VS Code transport:stdio runtime:npm

Install ZebPay MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zebpay-api-key",
      "description": "ZEBPAY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zebpay-api-secret",
      "description": "ZEBPAY_API_SECRET",
      "password": true
    }
  ],
  "servers": {
    "zebpay-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@zebpay_rajesh/zebpay-mcp-server"
      ],
      "env": {
        "ZEBPAY_API_KEY": "${input:zebpay-api-key}",
        "ZEBPAY_API_SECRET": "${input:zebpay-api-secret}"
      }
    }
  }
}

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

ZebPay MCP Server in other clients