Skip to content
VS Code

BPE (Bitcoin Pricing Engine) for VS Code

io.github.bxetech/bpe-mcp

Consolidated Bitcoin market data for AI agents: BBO pricing, ML signals, funding skew, briefings.

client:VS Code transport:stdio runtime:npm

Install BPE (Bitcoin Pricing Engine) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bpe-api-key",
      "description": "BPE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bpe-base-url",
      "description": "BPE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "bpe-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bxetech/bpe-mcp"
      ],
      "env": {
        "BPE_API_KEY": "${input:bpe-api-key}",
        "BPE_BASE_URL": "${input:bpe-base-url}"
      }
    }
  }
}

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

BPE (Bitcoin Pricing Engine) in other clients