Wraps BXE Tech's consolidated Bitcoin market data API into five MCP tools: current price aggregated across 36 exchanges, natural language briefings (template rendered, no LLM calls), funding rate skew per venue, ML directional signals at configurable horizons, and a sentiment snapshot that includes Fear & Greed and mempool stress. Saves you from wiring up three dozen exchange APIs with different schemas and auth. Requires a BPE API key. Install globally via npm or run with npx directly from your Claude Desktop config. If you're building an agent that needs to reason about Bitcoin market conditions without burning tokens on noisy per-exchange data, this gives you one normalized feed with derived signals already baked in.
Model Context Protocol server for the BPE market-data API. Lets Claude Desktop, Cursor, Goose, and other MCP-enabled agents query consolidated Bitcoin pricing, ML signals, funding-rate skew, and natural-language market briefings — without writing any HTTP boilerplate.
Status: v0.2 — five tools, local stdio transport, no LLM calls inside the briefing endpoint (template-rendered). API key required.
Listed in the official MCP Server Registry as io.github.bxetech/bpe-mcp. Install via npm install -g @bxetech/bpe-mcp or npx -y @bxetech/bpe-mcp.
If you're building an agent that touches Bitcoin markets, you have two options today:
This MCP server is option 2 dressed up as native tools your agent can discover and call.
| Tool | What it does |
|---|---|
get_consolidated_price | Current BTC price aggregated across the BPE network |
get_market_briefing | ~4 lines (brief) or 6–8 (detailed) natural-language summary — price, funding skew, ML signal, sentiment, anomalies |
get_funding_skew | Per-venue annualised funding rates + max-spread pair |
get_ml_signal | Current ML prediction (direction, probability, confidence) at the requested horizon |
get_sentiment_snapshot | Crypto Fear & Greed index, news sentiment, mempool stress |
npm install -g @bxetech/bpe-mcp
Or use npx with no install (recommended for Claude Desktop):
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"bpe": {
"command": "npx",
"args": ["-y", "@bxetech/bpe-mcp"],
"env": {
"BPE_API_KEY": "bpe_..."
}
}
}
}
Restart Claude Desktop. The five tools appear under the MCP server picker.
| Env var | Default | Notes |
|---|---|---|
BPE_API_KEY | (required) | Get one at https://bxetech.com/contact |
BPE_BASE_URL | https://mcp.bxetech.com | Override for self-hosted / local dev |
BPE_TIMEOUT_MS | 5000 | Per-request timeout |
git clone https://github.com/bxetech/bpe-mcp
cd bpe-mcp
npm install
npm run build
BPE_API_KEY=... npm run dev
To dogfood in Claude Desktop while iterating, point at the local build:
{
"mcpServers": {
"bpe-dev": {
"command": "node",
"args": ["/abs/path/to/mcp-server/dist/index.js"],
"env": {
"BPE_API_KEY": "...",
"BPE_BASE_URL": "http://localhost:8082"
}
}
}
}
get_sentiment_snapshot ✅, friendly tier-aware errors ✅, timestamped briefings ✅get_basis, subscribe_alert (webhook subscription), hosted HTTP transport for non-developer install (Cursor extension, ChatGPT Desktop)See docs/research/AGENT_INTEGRATION_AND_MONETISATION_2026-04-27.md for the broader product / monetisation plan.
MIT — see LICENSE.
BPE_API_KEY*secretYour BPE API key. Free tier available for evaluation; Agent tier unlocks the full briefing endpoint with ML signals, funding skew, and sentiment. Request at https://bxetech.com/contact.
BPE_BASE_URLdefault: https://mcp.bxetech.comOverride the BPE backend endpoint. Defaults to https://mcp.bxetech.com. Use https://mcp-qa1.bxetech.com for QA testing.
com.mcparmory/google-sheets
domdomegg/google-sheets-mcp
henilcalagiya/google-sheets-mcp
cct15/war-dashboard-data
moooonad/mcp-google-sheets-full
io.github.br0ski777/csv-to-json