Skip to main content
Glama
SamerElhamdo

Binance Futures MCP Server

by SamerElhamdo

new-order

Create a Binance USDⓈ-M Futures order (LIMIT, MARKET, STOP, TAKE_PROFIT, TRAILING_STOP) to execute trades on futures markets.

Instructions

Create a new order on Binance USDⓈ-M Futures. Supports all order types: LIMIT, MARKET, STOP, STOP_MARKET, TAKE_PROFIT, TAKE_PROFIT_MARKET, TRAILING_STOP_MARKET. Essential for executing trades on futures markets.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sideYesOrder side: BUY or SELL
typeYesOrder type
priceNoOrder price. Required for LIMIT, STOP, TAKE_PROFIT orders
symbolYesTrading pair symbol (e.g., BTCUSDT, ETHUSDT)
quantityNoOrder quantity. Cannot be sent with closePosition=true
stopPriceNoUsed with STOP/STOP_MARKET or TAKE_PROFIT/TAKE_PROFIT_MARKET orders
reduceOnlyNoReduce only order. Default false. Cannot be sent in Hedge Mode or with closePosition=true
timeInForceNoTime in force. Required for LIMIT orders
workingTypeNostopPrice triggered by: MARK_PRICE or CONTRACT_PRICE. Default CONTRACT_PRICE
callbackRateNoUsed with TRAILING_STOP_MARKET orders, min 0.1, max 10 where 1 for 1%
positionSideNoPosition side. Default BOTH for One-way Mode; LONG or SHORT for Hedge Mode
priceProtectNoPrice protection. Default FALSE
closePositionNoClose-All, used with STOP_MARKET or TAKE_PROFIT_MARKET
activationPriceNoUsed with TRAILING_STOP_MARKET orders, default as the latest price
newClientOrderIdNoA unique id among open orders. Automatically generated if not sent
newOrderRespTypeNoResponse type. ACK or RESULT, default ACK

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It mentions supported order types, but does not disclose authentication requirements, error handling, idempotency, or what happens on partial fills. It only lists order types, which is already in the schema enum. This is a significant gap for a mutating financial tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded with the core action and venue. The list of order types is long but relevant. No wasted words, though the middle sentence is somewhat redundant with the schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex trading operation with 16 parameters, no annotations, and no output schema, the description is insufficient. It does not explain return values, error cases, or prerequisites like API permissions or account funding. An agent would need to infer critical details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already provides detailed semantics for all 16 parameters (enums, required fields, dependencies). The description adds no parameter-level guidance; it merely lists order types already covered by the enum. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (Create) and resource (order) on a specific venue (Binance USDⓈ-M Futures). The name 'new-order' and siblings like cancel-order, query-order make its role unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Says it is 'essential for executing trades on futures markets,' implying when to use it, but does not name alternatives or note when not to use it (e.g., use modify-order to change an existing order). The guidance is implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.