Skip to content
VS Code

pexbot mcp for VS Code

io.github.mikusnuz/pexbot-mcp

PexBot simulated spot/futures trading, competitions, portfolios, and AI analytics.

client:VS Code transport:stdio runtime:npm

Install pexbot mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pexbot-api-key",
      "description": "PEXBOT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pexbot-token",
      "description": "PEXBOT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pexbot-trading-account",
      "description": "PEXBOT_TRADING_ACCOUNT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pexbot-api-url",
      "description": "PEXBOT_API_URL",
      "password": true
    }
  ],
  "servers": {
    "pexbot-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@pexbot/mcp"
      ],
      "env": {
        "PEXBOT_API_KEY": "${input:pexbot-api-key}",
        "PEXBOT_TOKEN": "${input:pexbot-token}",
        "PEXBOT_TRADING_ACCOUNT": "${input:pexbot-trading-account}",
        "PEXBOT_API_URL": "${input:pexbot-api-url}"
      }
    }
  }
}

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

pexbot mcp in other clients