home / mcp / binance futures mcp server
Provides authenticated access to Binance Futures data and trading actions via MCP, including account info and market data.
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.
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.
Retrieve overall account information including balance, permissions, and account status.
Fetch available balances for all assets in your Binance Futures account.
Return current positions for symbols you hold in futures trading.
Query whether your account is in Hedge or One-way mode.
Obtain current commission rates applicable to your account.
Retrieve exchange rules, symbol permissions, and trading constraints.
Get best bid/ask and quantity information for symbols in the order book.
Fetch the latest price for a given symbol.
Access depth information for a symbol's order book.
Retrieve candlestick data for a symbol over a specified interval.
Obtain the current mark price and funding rate for a symbol.