Unofficial tools and server implementation for Binance's Model Context Protocol (MCP). Designed to support developers building crypto trading AI Agents.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"binance": {
"args": [
"--api-key",
"your_api_key",
"--api-secret",
"your_secret",
"--binance-testnet"
],
"command": "binance-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A powerful Model Context Protocol (MCP) server that enables AI agents to interact seamlessly with the Binance cryptocurrency exchange. This server provides a comprehensive suite of trading tools, market data access, and account management capabilities through the standardized MCP interface.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked binance-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
MCP Security Weekly
Get CVE alerts and security updates for Binance Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A powerful Model Context Protocol (MCP) server that enables AI agents to interact seamlessly with the Binance cryptocurrency exchange. This server provides a comprehensive suite of trading tools, market data access, and account management capabilities through the standardized MCP interface.
This tool acts as a bridge between AI Assistants (like Claude, Cursor AI, or ChatGPT) and your Binance Account.
Instead of manually navigating the Binance website or app, you can ask your AI to:
The AI sends the request to this server, which securely executes it on Binance and returns the result to your AI.
The easiest way to install is using pip or uv:
# using pip
pip install binance-mcp-server
# using uv
uv add binance-mcp-server
You need your Binance API Keys to allow this tool to access your account.
# Required: Your Binance API credentials
export BINANCE_API_KEY="your_api_key_here"
export BINANCE_API_SECRET="your_api_secret_here"
# Recommended: Use testnet for development and safe testing
export BINANCE_TESTNET="true"
Add the following to your MCP settings configuration file (e.g., claude_desktop_config.json or mcp_config.json):
{
"mcpServers": {
"binance": {
"command": "binance-mcp-server",
"args": [
"--api-key", "your_api_key",
"--api-secret", "your_secret",
"--binance-testnet"
]
}
}
}
| Tool | Purpose |
|---|---|
get_balance | Retrieve account balances for all assets |
get_account_snapshot | Point-in-time account state snapshot |
get_fee_info | Trading fee rates (maker/taker commissions) |
get_available_assets | List all tradable cryptocurrencies |
| Tool | Purpose |
|---|---|
get_ticker_price | Current price for a trading symbol |
get_ticker | 24-hour ticker price change statistics |
get_order_book | Current order book (bids/asks) |
| Tool | Purpose |
|---|---|
create_order | Create buy/sell orders (market, limit, etc.) |
get_orders | List order history |