Back to Browse

Bpe MCP Server

by Bxetech
Developer ToolsModerate6.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

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

About

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

Security Report

6.2
Moderate6.2Moderate Risk

This is a well-structured MCP server for Bitcoin market data with solid security practices. Authentication is properly enforced via API keys through environment variables, input validation is present via Zod schemas, and the codebase is clean with minimal code quality issues. Permissions are appropriately scoped to HTTP network access for API calls, which aligns with the server's stated purpose of querying the BPE market-data API. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.

6 files analyzed · 6 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Your 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.Required

Environment variable: BPE_API_KEY

Override the BPE backend endpoint. Defaults to https://mcp.bxetech.com. Use https://mcp-qa1.bxetech.com for QA testing.Optional

Environment variable: BPE_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-bxetech-bpe-mcp": {
      "env": {
        "BPE_API_KEY": "your-bpe-api-key-here",
        "BPE_BASE_URL": "your-bpe-base-url-here"
      },
      "args": [
        "-y",
        "@bxetech/bpe-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

BPE MCP Server

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.

Why use it

If you're building an agent that touches Bitcoin markets, you have two options today:

  1. Talk to 36 different exchange APIs directly. Each has a different schema, different auth, different rate limits, different reliability. Your agent burns tokens reasoning over inconsistent payloads.
  2. Use one consolidated source. BPE aggregates all 36 venues into a single normalised feed with derived signals (ML predictions, sentiment, funding skew, basis). One auth, one schema, one tool call.

This MCP server is option 2 dressed up as native tools your agent can discover and call.

Tools (v0.2)

ToolWhat it does
get_consolidated_priceCurrent 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_skewPer-venue annualised funding rates + max-spread pair
get_ml_signalCurrent ML prediction (direction, probability, confidence) at the requested horizon
get_sentiment_snapshotCrypto Fear & Greed index, news sentiment, mempool stress

Install

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.

Configuration

Env varDefaultNotes
BPE_API_KEY(required)Get one at https://bxetech.com/contact
BPE_BASE_URLhttps://mcp.bxetech.comOverride for self-hosted / local dev
BPE_TIMEOUT_MS5000Per-request timeout

Local development

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"
      }
    }
  }
}

Roadmap

  • v0.2get_sentiment_snapshot ✅, friendly tier-aware errors ✅, timestamped briefings ✅
  • v0.3get_basis, subscribe_alert (webhook subscription), hosted HTTP transport for non-developer install (Cursor extension, ChatGPT Desktop)
  • v0.4 — Optional LLM-rendered briefing via Haiku (richer prose, with per-call cost)

See docs/research/AGENT_INTEGRATION_AND_MONETISATION_2026-04-27.md for the broader product / monetisation plan.

License

MIT — see LICENSE.

Reviews

No reviews yet

Be the first to review this server!