This MCP server integrates with the Binance spot trading API, enabling automated cryptocurrency trading strategies. It leverages the @binance/connector library for API interactions and uses SQLite for local data storage. The implementation focuses on providing a robust foundation for algorithmic trading, with features like secure credential management via keytar. Ideal for developers looking to build custom trading bots or automate portfolio management on Binance.
No reviews yet. Be the first to review!
Sign in to join the conversation
Securely store your Binance API credentials: Requires parameters apiKey (string) and apiSecret (string).
Create LIMIT or MARKET orders. Requires parameters symbol (string), side (string), type (string), quantity (string), and optionally price (string) for LIMIT orders.
Cancel an existing order. Requires parameters symbol (string) and orderId (string).
Check your account balances. Returns an object with currency balance information.
List all open orders. Optionally specify symbol (string) to filter the results.
Create various types of futures orders. Requires parameters symbol (string), side (string), type (string), quantity (string), and may include price (string), stopPrice (string), timeInForce (string), and callbackRate (string) for specific order types.
Adjust leverage for a trading pair. Requires parameters symbol (string) and leverage (integer, between 1 and 125).
Get all open futures positions. Returns position information.
Get detailed futures account information. Returns account details.
Get funding rate for a futures symbol. Requires parameter symbol (string).
Cancel an existing futures order. Requires parameters symbol (string) and orderId (string).