Skip to main content
Glama
SamerElhamdo

Binance Futures MCP Server

by SamerElhamdo

get-trade-history

Fetch executed trade history for Binance USDⓈ-M Futures, returning filled order details like price, quantity, and fees for a symbol.

Instructions

Get account trade list (executed trades) for Binance USDⓈ-M Futures. Returns detailed information about filled orders including price, quantity, and fees.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of trades to return (default: 500, max: 1000)
fromIdNoTrade ID to fetch from (optional)
symbolYesTrading pair symbol (e.g., BTCUSDT, ETHUSDT)
endTimeNoEnd time in milliseconds (optional)
startTimeNoStart time in milliseconds (optional)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral load. It discloses that only filled/executed trades are returned (vs open orders) and lists what data fields (price, quantity, fees) are included, which is useful. But it says nothing about authentication requirements, rate limiting, pagination behavior, or time-range defaults beyond what the schema already implies.

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?

Two sentences, efficient and front-loaded with the core purpose. No filler. Slightly could be tightened but earns its place.

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

Completeness3/5

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

For a read-only query tool with full schema coverage but no annotations and no output schema, the description covers the core (what it returns) but omits auth requirements, pagination limits, and how it differs operationally from sibling order-query tools. Adequate but with clear gaps.

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 fully documents all 5 parameters (limit defaults/max, fromId, symbol format, start/end time). The description adds the framing that results are filled trades filtered presumably by the time/ID params, but no syntax or format detail beyond the schema. Baseline 3 is appropriate.

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

Purpose4/5

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

States a specific verb (Get) and resource (account trade list) and names the domain (Binance USDⓈ-M Futures). It distinguishes itself from get-all-orders and query-order by specifying executed/filled trades, though it does not explicitly name those siblings.

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

Usage Guidelines2/5

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

No guidance on when to use this versus query-order, get-all-orders, or get-open-orders. The parenthetical '(executed trades)' hints at filled-only scope but does not explicitly state the condition or exclusions, and no prerequisites (auth, symbol validity, rate limits) are mentioned.

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