Skip to content
VS Code

bitget agent mcp for VS Code

io.github.bitget-ai/bitget-agent-mcp

Official Bitget MCP Server for the Unified Trading Account (UTA v3) API.

client:VS Code transport:stdio runtime:npm

Install bitget agent mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bitget-api-key",
      "description": "BITGET_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitget-secret-key",
      "description": "BITGET_SECRET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bitget-passphrase",
      "description": "BITGET_PASSPHRASE",
      "password": true
    }
  ],
  "servers": {
    "bitget-agent-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bitget-ai/bitget-agent-mcp"
      ],
      "env": {
        "BITGET_API_KEY": "${input:bitget-api-key}",
        "BITGET_SECRET_KEY": "${input:bitget-secret-key}",
        "BITGET_PASSPHRASE": "${input:bitget-passphrase}"
      }
    }
  }
}

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

bitget agent mcp in other clients