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.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
Securely store your Binance API credentials. Parameters: apiKey (string), apiSecret (string)
Create LIMIT or MARKET orders. Parameters: symbol (string), side (string), type (string), quantity (string), price (optional string), stopPrice (optional string), timeInForce (optional string), callbackRate (optional string)
Cancel an existing order. Parameters: symbol (string), orderId (string)
Check your account balances. Returns: object containing asset balances
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), stopPrice (optional string), timeInForce (optional string), callbackRate (optional string)
Adjust leverage for a trading pair. Parameters: symbol (string), leverage (number)
Get all open futures positions. Returns: array of futures positions
Get detailed futures account information. Returns: object containing futures account details
Get funding rate for a futures symbol. Parameters: symbol (string)
Cancel an existing futures order. Parameters: symbol (string), orderId (string)