Hardened MCP server for Binance market data, account management, and trading — forked from ethancod1ng/binance-mcp-server with critical fixes and
Connect Binance to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Hardened MCP server for Binance market data, account management, and trading — forked from ethancod1ng/binance-mcp-server with critical fixes and expanded tool set. The binance mcp server is what makes that connection.
Add to your MCP client configuration (Claude Desktop, Hermes, Cursor, etc.):
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
get_price — Current price for a trading pairget_orderbook — Order book depth dataget_klines — K-line/candlestick historyget_24hr_ticker — 24-hour price change statisticsget_exchange_info — Exchange trading rules and symbol filtersget_server_time — Binance server time for clock sync diagnosticsget_avg_price — 5-minute average priceget_account_info — Account info with filtered balancesget_asset_balance — Balance for a specific assetget_open_orders — Current open orders (all or by pair)get_order_history — Historical orders for a pairget_account_trades — Executed trade historyInstallation goes through your MCP client rather than a global install: point it at @daniyal0100101/binance-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Configuration is passed through the environment: BINANCE_API_KEY, BINANCE_API_SECRET, BINANCE_TESTNET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Binance's toolset — get_price, get_orderbook, get_klines and 11 more — is a fair guide to whether it matches your workflow. It is maintained by daniyal0100101; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Binance's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| get_price | Current price for a trading pair |
| get_orderbook | Order book depth data |
| get_klines | K-line/candlestick history |
| get_24hr_ticker | 24-hour price change statistics |
| get_exchange_info | Exchange trading rules and symbol filters |
| get_server_time | Binance server time for clock sync diagnostics |
| get_avg_price | 5-minute average price |
| get_account_info | Account info with filtered balances |
| get_asset_balance | Balance for a specific asset |
| get_open_orders | Current open orders (all or by pair) |
| get_order_history | Historical orders for a pair |
| get_account_trades | Executed trade history |
| get_trade_fee | Trading fee rates |
| place_order | Place an order (all 7 Binance order types) |
{
"mcpServers": {
"binance": {
"command": "npx",
"args": ["-y", "@daniyal0100101/binance-mcp"],
"env": {
"BINANCE_API_KEY": "your_api_key",
"BINANCE_API_SECRET": "your_api_secret",
"BINANCE_TESTNET": "false"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| BINANCE_API_KEY | Credential the server authenticates with. | Yes |
| BINANCE_API_SECRET | Credential the server authenticates with. | Yes |
| BINANCE_TESTNET | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.