A free, hosted MCP server that exposes 340 Binance API endpoints for market data, order books, and trading pairs. No auth or API keys required. The server is deterministically generated from Binance's API spec, so every tool maps 1:1 to a real endpoint. Connect via streamable HTTP and you get instant access to real-time crypto market data through Claude or other MCP clients. Built by Junct as part of their agent-readiness layer for crypto. Useful when you need to query exchange data, check order books, or pull trading pair information without setting up direct API access or managing credentials yourself.
Public tool metadata for what this MCP can expose to an agent.
bn_pingTest connectivity to Binance API. Returns empty object if successful. Use to verify API is reachable.1 paramsTest connectivity to Binance API. Returns empty object if successful. Use to verify API is reachable.
_fieldsstringbn_server_timeGet Binance server time (millisecond timestamp). Use to check connectivity and sync timestamps for signed requests.1 paramsGet Binance server time (millisecond timestamp). Use to check connectivity and sync timestamps for signed requests.
_fieldsstringbn_exchange_infoGet exchange information including trading rules, symbol list, filters (PRICE_FILTER, LOT_SIZE, MIN_NOTIONAL), and rate limits. Optionally filter by symbol.3 paramsGet exchange information including trading rules, symbol list, filters (PRICE_FILTER, LOT_SIZE, MIN_NOTIONAL), and rate limits. Optionally filter by symbol.
symbolstring_fieldsstringsymbolsstringbn_order_bookGet order book (bids and asks) for a symbol. Weight varies by limit: 5 (1-100), 25 (101-500), 50 (501-1000), 250 (1001-5000).3 paramsGet order book (bids and asks) for a symbol. Weight varies by limit: 5 (1-100), 25 (101-500), 50 (501-1000), 250 (1001-5000).
limitintegersymbolstring_fieldsstringbn_recent_tradesGet recent trades for a symbol. Returns up to 1000 most recent trades with price, quantity, and time.3 paramsGet recent trades for a symbol. Returns up to 1000 most recent trades with price, quantity, and time.
limitintegersymbolstring_fieldsstringbn_aggregate_tradesGet compressed/aggregate trades for a symbol. Trades that fill at the same time, price, and side are aggregated into a single entry.6 paramsGet compressed/aggregate trades for a symbol. Trades that fill at the same time, price, and side are aggregated into a single entry.
limitintegerfromIdintegersymbolstring_fieldsstringendTimeintegerstartTimeintegerbn_klinesGet candlestick/kline data (OHLCV) for a symbol. Returns arrays of [openTime, open, high, low, close, volume, closeTime, quoteVolume, trades, takerBuyBase, takerBuyQuote].6 paramsGet candlestick/kline data (OHLCV) for a symbol. Returns arrays of [openTime, open, high, low, close, volume, closeTime, quoteVolume, trades, takerBuyBase, takerBuyQuote].
limitintegersymbolstring_fieldsstringendTimeintegerintervalstringstartTimeintegerbn_avg_priceGet current average price for a symbol. Returns the weighted average price over the last 5 minutes.2 paramsGet current average price for a symbol. Returns the weighted average price over the last 5 minutes.
symbolstring_fieldsstringbn_ticker_24hrGet 24-hour price change statistics. Weight: 2 (single symbol), 80 (all symbols). Includes price change, volume, high/low, and trade count.2 paramsGet 24-hour price change statistics. Weight: 2 (single symbol), 80 (all symbols). Includes price change, volume, high/low, and trade count.
symbolstring_fieldsstringbn_ticker_priceGet latest price for a symbol or all symbols. Lightweight endpoint for quick price checks.2 paramsGet latest price for a symbol or all symbols. Lightweight endpoint for quick price checks.
symbolstring_fieldsstringbn_book_tickerGet best bid/ask price and quantity for a symbol or all symbols. Useful for spread analysis.2 paramsGet best bid/ask price and quantity for a symbol or all symbols. Useful for spread analysis.
symbolstring_fieldsstringbn_new_orderPlace a new order. WARNING: This uses REAL MONEY on Binance Global. Supports LIMIT, MARKET, STOP_LOSS, STOP_LOSS_LIMIT, TAKE_PROFIT, TAKE_PROFIT_LIMIT, LIMIT_MAKER order types. Use bn_test_order first to validate.10 paramsPlace a new order. WARNING: This uses REAL MONEY on Binance Global. Supports LIMIT, MARKET, STOP_LOSS, STOP_LOSS_LIMIT, TAKE_PROFIT, TAKE_PROFIT_LIMIT, LIMIT_MAKER order types. Use bn_test_order first to validate.
sidestringtypestringpricestringsymbolstringquantitystringstopPricestringrecvWindowintegertimeInForcestringquoteOrderQtystringnewClientOrderIdstringbn_test_orderTest new order creation (dry run). Validates all parameters without actually placing the order. No funds are used. Always test before placing real orders.10 paramsTest new order creation (dry run). Validates all parameters without actually placing the order. No funds are used. Always test before placing real orders.
sidestringtypestringpricestringsymbolstringquantitystringstopPricestringrecvWindowintegertimeInForcestringquoteOrderQtystringnewClientOrderIdstringbn_query_orderQuery a specific order by orderId or origClientOrderId. Returns order status, filled quantity, and execution details.5 paramsQuery a specific order by orderId or origClientOrderId. Returns order status, filled quantity, and execution details.
symbolstring_fieldsstringorderIdintegerrecvWindowintegerorigClientOrderIdstringbn_cancel_orderCancel an active order by orderId or origClientOrderId.4 paramsCancel an active order by orderId or origClientOrderId.
symbolstringorderIdintegerrecvWindowintegerorigClientOrderIdstringbn_cancel_all_ordersCancel all open orders for a symbol. WARNING: This cancels ALL pending orders at once. Cannot be undone.2 paramsCancel all open orders for a symbol. WARNING: This cancels ALL pending orders at once. Cannot be undone.
symbolstringrecvWindowintegerbn_open_ordersGet all open orders for a symbol or all symbols. Weight: 3 (with symbol), 40 (without symbol).3 paramsGet all open orders for a symbol or all symbols. Weight: 3 (with symbol), 40 (without symbol).
symbolstring_fieldsstringrecvWindowintegerbn_all_ordersGet all orders (active, canceled, filled) for a symbol. Supports time range and pagination via orderId.7 paramsGet all orders (active, canceled, filled) for a symbol. Supports time range and pagination via orderId.
limitintegersymbolstring_fieldsstringendTimeintegerorderIdintegerstartTimeintegerrecvWindowintegerbn_account_infoGet account information including balances, commission rates, and trading permissions. Returns all asset balances (free + locked).2 paramsGet account information including balances, commission rates, and trading permissions. Returns all asset balances (free + locked).
_fieldsstringrecvWindowintegerbn_my_tradesGet trade execution history for a specific symbol. Returns price, quantity, commission, and whether you were buyer/maker.8 paramsGet trade execution history for a specific symbol. Returns price, quantity, commission, and whether you were buyer/maker.
limitintegerfromIdintegersymbolstring_fieldsstringendTimeintegerorderIdintegerstartTimeintegerrecvWindowintegerbn_create_listen_keyCreate a listen key for user data stream (WebSocket). The key is valid for 60 minutes. Use keepalive to extend. Connects to wss://stream.binance.com:9443/ws/<listenKey>.1 paramsCreate a listen key for user data stream (WebSocket). The key is valid for 60 minutes. Use keepalive to extend. Connects to wss://stream.binance.com:9443/ws/<listenKey>.
_fieldsstringbn_keepalive_listen_keyKeepalive a listen key to extend its validity by 60 minutes. Should be called periodically to prevent expiration.1 paramsKeepalive a listen key to extend its validity by 60 minutes. Should be called periodically to prevent expiration.
listenKeystringbn_close_listen_keyClose/invalidate a listen key. The associated user data stream will be terminated.1 paramsClose/invalidate a listen key. The associated user data stream will be terminated.
listenKeystringMCP server for Binance. Agent-ready API for Binance.
Hosted at binance.mcp.junct.dev/mcp. Free to use. No auth. No API key required.
Part of Junct — the agent-readiness layer for the crypto stack.
Add to your MCP client config (Claude Desktop, Cursor, Windsurf):
{
"mcpServers": {
"binance": {
"url": "https://binance.mcp.junct.dev/mcp",
"transport": "streamable-http"
}
}
}
This MCP server is deterministically generated from the Binance API specification. Every tool maps 1:1 to a real API endpoint — no hallucinated endpoints, no phantom tools.
https://binance.mcp.junct.dev/mcpBinance, MCP server, DeFi, AI agent, agent-ready API, crypto tools, Model Context Protocol, hosted MCP
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