Binance MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_symbol_priceB | Get the current price of a cryptocurrency pair. Args: symbol: The cryptocurrency pair, e.g., BTCUSDT. Returns: Price information from Binance. |
| get_account_balanceC | Get the balance of a specific cryptocurrency asset. Args: asset: The cryptocurrency symbol, e.g., BTC. Returns: Asset balance info. |
| place_market_orderC | Place a market order to buy or sell. Args: symbol: The trading pair, e.g., BTCUSDT. side: BUY or SELL. quantity: Amount to trade. Returns: Order placement result. |
| get_trade_historyC | Get recent trade history for a pair. Args: symbol: The trading pair. limit: Number of trades to fetch. Returns: List of trade summaries. |
| get_open_ordersC | Get open orders for a symbol. Args: symbol: The trading pair. Returns: List of open orders. |
| cancel_orderC | Cancel a specific order. Args: symbol: The trading pair. order_id: Order ID to cancel. Returns: Cancellation result. |
| get_funding_rate_historyC | Get funding rate history. Args: symbol: Perpetual contract symbol. limit: Number of records to return (default 100). Returns: Funding rate data list. |
| execute_hedge_arbitrage_strategyC | Execute hedge arbitrage based on funding rate. Args: symbol: The trading pair. quantity: Amount to trade. Returns: Summary of the arbitrage result. |
| find_arbitrage_pairsB | Find arbitrage pairs based on funding rate, volume, and rate direction stability. Args: min_funding_rate: Minimum funding rate to qualify. min_avg_volume: Minimum 24hr volume in USDT. history_days: How many days of history to analyze. stability_threshold: Minimum proportion of funding rates in same direction. Returns: List of qualifying arbitrage opportunities. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Most tools have distinct purposes, but 'execute_hedge_arbitrage_strategy' and 'find_arbitrage_pairs' could be confused as both relate to arbitrage, though one executes and the other finds opportunities. Other tools like 'get_account_balance', 'get_open_orders', and 'place_market_order' are clearly differentiated.
All tools follow a consistent verb_noun pattern with snake_case, such as 'cancel_order', 'get_account_balance', and 'place_market_order'. This uniformity makes the tool set predictable and easy to navigate.
With 9 tools, the server is well-scoped for cryptocurrency trading on Binance, covering key operations like account management, order handling, price data, and arbitrage strategies without being overwhelming or too sparse.
The tool set covers essential trading functions, including account balance, orders, prices, and trade history, with added arbitrage features. Minor gaps exist, such as no tool for limit orders or advanced order types, but core workflows are well-supported.