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
Create LIMIT or MARKET orders. Parameters: symbol (string), side (string), type (string), quantity (string), price (optional string for LIMIT orders).
Cancel an existing order. Parameters: symbol (string), orderId (string).
Check your account balances. Returns an object with balance information.
List all open orders. Parameters: symbol (optional string).
Create various types of futures orders. Parameters: symbol (string), side (string), type (string), quantity (string), price (optional string for LIMIT orders), stopPrice (optional string for STOP_MARKET orders), timeInForce (optional string for LIMIT orders), callbackRate (optional string for TRAILING_STOP_MARKET orders).
Adjust leverage for a trading pair. Parameters: symbol (string), leverage (number, 1-125).
Get all open futures positions. Returns an object with positions information.
Get detailed futures account information. Returns an object with account details.
Get funding rate for a futures symbol. Parameters: symbol (string).
Cancel an existing futures order. Parameters: symbol (string), orderId (string).