- Home
- MCP servers
- Binance Futures
Binance Futures
- python
3
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"alexcandrabersiva-bin-mcp": {
"command": "uvx",
"args": [
"binance_futures_mcp",
"--binance-api-key",
"your_key",
"--binance-secret-key",
"your_secret"
],
"env": {
"BINANCE_API_KEY": "your_key",
"BINANCE_SECRET_KEY": "your_secret"
}
}
}
}You run a Binance MCP Server to access Binance Futures API endpoints through a secure, local MCP runtime. This server authenticates requests, provides real-time market data and trading tools, and lets your MCP client interact with Binance futures programmatically from your own environment.
How to use
Install the MCP server, start it with your Binance API credentials, and connect your MCP client to the local MCP endpoint. You will access 11 trading tools across Account Information and Market Data categories, with built-in authentication, error handling, and rate-limit respect. Use the configured runtime to execute actions such as querying account details, getting market data, and placing orders through the MCP client.
Available tools
get_account_info
Retrieve overall account information including balance, permissions, and account status.
get_balance
Fetch available balances for all assets in your Binance Futures account.
get_position_info
Return current positions for symbols you hold in futures trading.
get_position_mode
Query whether your account is in Hedge or One-way mode.
get_commission_rate
Obtain current commission rates applicable to your account.
get_exchange_info
Retrieve exchange rules, symbol permissions, and trading constraints.
get_book_ticker
Get best bid/ask and quantity information for symbols in the order book.
get_price_ticker
Fetch the latest price for a given symbol.
get_order_book
Access depth information for a symbol's order book.
get_klines
Retrieve candlestick data for a symbol over a specified interval.
get_mark_price
Obtain the current mark price and funding rate for a symbol.