CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Binance Mcp

junct-bot/binance-mcp
23 toolsHTTPregistry active
Summary

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.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

23 tools
bn_pingTest connectivity to Binance API. Returns empty object if successful. Use to verify API is reachable.1 params

Test connectivity to Binance API. Returns empty object if successful. Use to verify API is reachable.

Parameters* required
_fieldsstring
Comma-separated list of fields to include in response
bn_server_timeGet Binance server time (millisecond timestamp). Use to check connectivity and sync timestamps for signed requests.1 params

Get Binance server time (millisecond timestamp). Use to check connectivity and sync timestamps for signed requests.

Parameters* required
_fieldsstring
Comma-separated list of fields to include in response
bn_exchange_infoGet exchange information including trading rules, symbol list, filters (PRICE_FILTER, LOT_SIZE, MIN_NOTIONAL), and rate limits. Optionally filter by symbol.3 params

Get exchange information including trading rules, symbol list, filters (PRICE_FILTER, LOT_SIZE, MIN_NOTIONAL), and rate limits. Optionally filter by symbol.

Parameters* required
symbolstring
Single symbol to query, e.g. BTCUSDT
_fieldsstring
Comma-separated list of fields to include in response
symbolsstring
Multiple symbols as JSON array string, e.g. ["BTCUSDT","ETHUSDT"]
bn_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 params

Get order book (bids and asks) for a symbol. Weight varies by limit: 5 (1-100), 25 (101-500), 50 (501-1000), 250 (1001-5000).

Parameters* required
limitinteger
Order book depth. Default: 100. Valid: 1-5000
symbolstring
Trading pair symbol, e.g. BTCUSDT, ETHUSDT
_fieldsstring
Comma-separated list of fields to include in response
bn_recent_tradesGet recent trades for a symbol. Returns up to 1000 most recent trades with price, quantity, and time.3 params

Get recent trades for a symbol. Returns up to 1000 most recent trades with price, quantity, and time.

Parameters* required
limitinteger
Number of trades. Default: 500, Max: 1000
symbolstring
Trading pair symbol, e.g. BTCUSDT
_fieldsstring
Comma-separated list of fields to include in response
bn_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 params

Get compressed/aggregate trades for a symbol. Trades that fill at the same time, price, and side are aggregated into a single entry.

Parameters* required
limitinteger
Number of results. Default: 500, Max: 1000
fromIdinteger
Aggregate trade ID to fetch from (inclusive)
symbolstring
Trading pair symbol, e.g. BTCUSDT
_fieldsstring
Comma-separated list of fields to include in response
endTimeinteger
End time in milliseconds (inclusive)
startTimeinteger
Start time in milliseconds (inclusive)
bn_klinesGet candlestick/kline data (OHLCV) for a symbol. Returns arrays of [openTime, open, high, low, close, volume, closeTime, quoteVolume, trades, takerBuyBase, takerBuyQuote].6 params

Get candlestick/kline data (OHLCV) for a symbol. Returns arrays of [openTime, open, high, low, close, volume, closeTime, quoteVolume, trades, takerBuyBase, takerBuyQuote].

Parameters* required
limitinteger
Number of klines. Default: 500, Max: 1000
symbolstring
Trading pair symbol, e.g. BTCUSDT
_fieldsstring
Comma-separated list of fields to include in response
endTimeinteger
End time in milliseconds
intervalstring
Kline interval: 1s, 1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 8h, 12h, 1d, 3d, 1w, 1M
startTimeinteger
Start time in milliseconds
bn_avg_priceGet current average price for a symbol. Returns the weighted average price over the last 5 minutes.2 params

Get current average price for a symbol. Returns the weighted average price over the last 5 minutes.

Parameters* required
symbolstring
Trading pair symbol, e.g. BTCUSDT
_fieldsstring
Comma-separated list of fields to include in response
bn_ticker_24hrGet 24-hour price change statistics. Weight: 2 (single symbol), 80 (all symbols). Includes price change, volume, high/low, and trade count.2 params

Get 24-hour price change statistics. Weight: 2 (single symbol), 80 (all symbols). Includes price change, volume, high/low, and trade count.

Parameters* required
symbolstring
Trading pair symbol (optional — omit for all symbols, higher weight)
_fieldsstring
Comma-separated list of fields to include in response
bn_ticker_priceGet latest price for a symbol or all symbols. Lightweight endpoint for quick price checks.2 params

Get latest price for a symbol or all symbols. Lightweight endpoint for quick price checks.

Parameters* required
symbolstring
Trading pair symbol (optional — omit for all symbols)
_fieldsstring
Comma-separated list of fields to include in response
bn_book_tickerGet best bid/ask price and quantity for a symbol or all symbols. Useful for spread analysis.2 params

Get best bid/ask price and quantity for a symbol or all symbols. Useful for spread analysis.

Parameters* required
symbolstring
Trading pair symbol (optional — omit for all symbols)
_fieldsstring
Comma-separated list of fields to include in response
bn_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 params

Place 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.

Parameters* required
sidestring
Order side: BUY or SELL
typestring
Order type: LIMIT, MARKET, STOP_LOSS, STOP_LOSS_LIMIT, TAKE_PROFIT, TAKE_PROFIT_LIMIT, LIMIT_MAKER
pricestring
Order price (decimal string). Required for LIMIT orders.
symbolstring
Trading pair symbol, e.g. BTCUSDT
quantitystring
Order quantity (decimal string)
stopPricestring
Stop/trigger price for STOP_LOSS, STOP_LOSS_LIMIT, TAKE_PROFIT, TAKE_PROFIT_LIMIT
recvWindowinteger
Request validity window in ms. Default: 5000, Max: 60000
timeInForcestring
Time in force: GTC (Good Till Canceled), IOC (Immediate Or Cancel), FOK (Fill Or Kill). Required for LIMIT orders.
quoteOrderQtystring
Quote order quantity for MARKET orders (spend exact quote amount)
newClientOrderIdstring
Unique client order ID for tracking
bn_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 params

Test new order creation (dry run). Validates all parameters without actually placing the order. No funds are used. Always test before placing real orders.

Parameters* required
sidestring
Order side: BUY or SELL
typestring
Order type: LIMIT, MARKET, STOP_LOSS, STOP_LOSS_LIMIT, TAKE_PROFIT, TAKE_PROFIT_LIMIT, LIMIT_MAKER
pricestring
Order price (decimal string). Required for LIMIT.
symbolstring
Trading pair symbol, e.g. BTCUSDT
quantitystring
Order quantity (decimal string)
stopPricestring
Stop price for stop orders
recvWindowinteger
Request validity window in ms. Default: 5000, Max: 60000
timeInForcestring
Time in force: GTC, IOC, FOK. Required for LIMIT orders.
quoteOrderQtystring
Quote order quantity for MARKET orders
newClientOrderIdstring
Unique client order ID
bn_query_orderQuery a specific order by orderId or origClientOrderId. Returns order status, filled quantity, and execution details.5 params

Query a specific order by orderId or origClientOrderId. Returns order status, filled quantity, and execution details.

Parameters* required
symbolstring
Trading pair symbol, e.g. BTCUSDT
_fieldsstring
Comma-separated list of fields to include in response
orderIdinteger
Order ID (either orderId or origClientOrderId required)
recvWindowinteger
Request validity window in ms. Default: 5000, Max: 60000
origClientOrderIdstring
Client order ID (either orderId or origClientOrderId required)
bn_cancel_orderCancel an active order by orderId or origClientOrderId.4 params

Cancel an active order by orderId or origClientOrderId.

Parameters* required
symbolstring
Trading pair symbol, e.g. BTCUSDT
orderIdinteger
Order ID to cancel (either orderId or origClientOrderId required)
recvWindowinteger
Request validity window in ms. Default: 5000, Max: 60000
origClientOrderIdstring
Client order ID to cancel
bn_cancel_all_ordersCancel all open orders for a symbol. WARNING: This cancels ALL pending orders at once. Cannot be undone.2 params

Cancel all open orders for a symbol. WARNING: This cancels ALL pending orders at once. Cannot be undone.

Parameters* required
symbolstring
Trading pair symbol, e.g. BTCUSDT
recvWindowinteger
Request validity window in ms. Default: 5000, Max: 60000
bn_open_ordersGet all open orders for a symbol or all symbols. Weight: 3 (with symbol), 40 (without symbol).3 params

Get all open orders for a symbol or all symbols. Weight: 3 (with symbol), 40 (without symbol).

Parameters* required
symbolstring
Trading pair symbol (optional — omit for all symbols, higher weight)
_fieldsstring
Comma-separated list of fields to include in response
recvWindowinteger
Request validity window in ms. Default: 5000, Max: 60000
bn_all_ordersGet all orders (active, canceled, filled) for a symbol. Supports time range and pagination via orderId.7 params

Get all orders (active, canceled, filled) for a symbol. Supports time range and pagination via orderId.

Parameters* required
limitinteger
Number of results. Default: 500, Max: 1000
symbolstring
Trading pair symbol, e.g. BTCUSDT
_fieldsstring
Comma-separated list of fields to include in response
endTimeinteger
End time in milliseconds
orderIdinteger
Order ID to fetch from (pagination)
startTimeinteger
Start time in milliseconds
recvWindowinteger
Request validity window in ms. Default: 5000, Max: 60000
bn_account_infoGet account information including balances, commission rates, and trading permissions. Returns all asset balances (free + locked).2 params

Get account information including balances, commission rates, and trading permissions. Returns all asset balances (free + locked).

Parameters* required
_fieldsstring
Comma-separated list of fields to include in response
recvWindowinteger
Request validity window in ms. Default: 5000, Max: 60000
bn_my_tradesGet trade execution history for a specific symbol. Returns price, quantity, commission, and whether you were buyer/maker.8 params

Get trade execution history for a specific symbol. Returns price, quantity, commission, and whether you were buyer/maker.

Parameters* required
limitinteger
Number of results. Default: 500, Max: 1000
fromIdinteger
Trade ID to fetch from
symbolstring
Trading pair symbol, e.g. BTCUSDT
_fieldsstring
Comma-separated list of fields to include in response
endTimeinteger
End time in milliseconds
orderIdinteger
Filter by order ID
startTimeinteger
Start time in milliseconds
recvWindowinteger
Request validity window in ms. Default: 5000, Max: 60000
bn_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 params

Create 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>.

Parameters* required
_fieldsstring
Comma-separated list of fields to include in response
bn_keepalive_listen_keyKeepalive a listen key to extend its validity by 60 minutes. Should be called periodically to prevent expiration.1 params

Keepalive a listen key to extend its validity by 60 minutes. Should be called periodically to prevent expiration.

Parameters* required
listenKeystring
Listen key to keep alive
bn_close_listen_keyClose/invalidate a listen key. The associated user data stream will be terminated.1 params

Close/invalidate a listen key. The associated user data stream will be terminated.

Parameters* required
listenKeystring
Listen key to close

Binance MCP Server

MCP 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.

Quick Start

Add to your MCP client config (Claude Desktop, Cursor, Windsurf):

{
  "mcpServers": {
    "binance": {
      "url": "https://binance.mcp.junct.dev/mcp",
      "transport": "streamable-http"
    }
  }
}

About

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.

  • Protocol: Binance
  • Endpoint: https://binance.mcp.junct.dev/mcp
  • Transport: Streamable HTTP
  • Auth: None required
  • Documentation: binance.mcp.junct.dev/llms.txt
  • Server card: binance.mcp.junct.dev/.well-known/mcp/server.json

Links

  • Junct Dashboard
  • llms.txt
  • agents.md
  • OpenAPI spec

Keywords

Binance, MCP server, DeFi, AI agent, agent-ready API, crypto tools, Model Context Protocol, hosted MCP

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Data & AnalyticsFinance & Commerce
Registryactive
TransportHTTP
UpdatedMar 19, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
Google Sheets

com.mcparmory/google-sheets

Create, read, and modify spreadsheet data, formatting, and sheets
25
Google Sheets

domdomegg/google-sheets-mcp

Allow AI systems to read, write, and query spreadsheet data via Google Sheets.
2
Google Sheets Mcp

henilcalagiya/google-sheets-mcp

Powerful tools for automating Google Sheets using Model Context Protocol (MCP)
14
Futuristic Risk Intelligence

cct15/war-dashboard-data

Geopolitical conflict risk, political events, and maritime traffic data for AI agents
1
Mcp Google Sheets Full

moooonad/mcp-google-sheets-full

Full Google Sheets MCP: 26 tools + run_sheets_script escape hatch. User OAuth, no service account.
CSV to JSON API

io.github.br0ski777/csv-to-json

Parse CSV to JSON array. Auto-detect delimiter, headers. x402 micropayment.