Skip to content
VS Code

mcp foxbit for VS Code

io.github.codespar/mcp-foxbit

MCP server for Foxbit — Brazilian crypto exchange, trading, orderbook, institutional

client:VS Code transport:stdio runtime:npm

Install mcp foxbit in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "foxbit-api-key",
      "description": "FOXBIT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "foxbit-api-secret",
      "description": "FOXBIT_API_SECRET",
      "password": true
    }
  ],
  "servers": {
    "mcp-foxbit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-foxbit"
      ],
      "env": {
        "FOXBIT_API_KEY": "${input:foxbit-api-key}",
        "FOXBIT_API_SECRET": "${input:foxbit-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

mcp foxbit in other clients