Crypto MCP Plugin
Real-time data from Binance and OKX — price spreads, funding rates, arbitrage yields, and exchange status. No API key required.
4 tools available
get_spread Binance · OKX Real-time price spread between Binance and OKX. Returns bid/ask on both exchanges, gross spread %, net spread after fees, and a profitability verdict.
symbolstring✓BTC, ETH, SOL, etc. taker_feenumber—Fee per side as decimal. Default: 0.001 {
"symbol": "BTC/USDT",
"binance": { "bid": 80813.28, "ask": 80813.29 },
"okx": { "bid": 80827.20, "ask": 80827.30 },
"spread": { "gross_pct": "0.0172%", "net_pct": "-0.1828%", "profitable": false },
"verdict": "Not profitable after 0.200% fees"
} get_funding_rate Perpetuals Current perpetual contract funding rates on Binance and OKX. Returns 8h rate, annualized yield, next settlement time, and which exchange pays more.
symbolstring✓BTC, ETH, SOL, etc. get_cash_carry Arbitrage Cash & Carry arbitrage yield calculator. Strategy: buy spot + short perpetual = collect funding rate with near-zero market risk. Returns gross/net annualized yield and estimated daily/annual profit.
symbolstring✓BTC, ETH, SOL, etc. capital_usdtnumber—Capital in USDT to estimate profit amounts get_exchange_status Status Live operational status of Binance and OKX. Returns API reachability, system status, and any active maintenance incidents. No input required.
How to connect
Claude Desktop
- Open Claude Desktop
- Go to Customize → Connectors → +
- Click Add custom connector
- Name:
LogicRoomX Crypto - URL:
https://api.logicroomx.com/mcp
Any MCP client
Endpoint: https://api.logicroomx.com/mcp
Protocol: MCP Streamable HTTP (2025-03-26)
Legacy SSE: https://api.logicroomx.com/sse REST API
GET /api/spread?symbol=BTC
GET /api/funding-rate?symbol=ETH
GET /api/cash-carry?symbol=BTC
GET /api/exchange-status What's new
Migrated to MCP Streamable HTTP (2025-03-26 spec). Legacy SSE kept for compatibility. Fixed multiple concurrent connections.
Fixed server crash on multiple SSE connections.
Initial release. Four tools: get_spread, get_funding_rate, get_cash_carry, get_exchange_status.