Skip to main content
Glama
trustxai

amazing-binance-mcp

by trustxai

binance_get_convert_order_status

Read-onlyIdempotent

Check a conversion order's status using its order ID or quote ID to confirm settlement after accepting a quote or resolving a timeout.

Instructions

Check one conversion's status by orderId or by the quoteId it came from.

Calls GET /sapi/v1/convert/orderStatus (SIGNED, UID weight 100). Exactly one of order_id / quote_id — Binance rejects both together.

When to Use:

  • After binance_accept_convert_quote returned PROCESS or ACCEPT_SUCCESS, to find out whether it settled.

  • After a timeout or 5xx on an acceptance, to learn whether the conversion happened before retrying anything.

When NOT to Use:

  • For a list of past conversions — use binance_get_convert_history.

  • For resting limit orders — use binance_get_convert_open_limit_orders.

Returns: The conversion's assets, amounts, ratio, status and creation time, with the status echoed verbatim.

Examples: params = {"order_id": "933256278426274426"} params = {"quote_id": "12415572564"}

Error Handling: -2015 means the key lacks permission or the IP is not allowlisted; an unknown id is rejected by Binance rather than returning an empty result.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds valuable context beyond that: it notes the endpoint is SIGNED with UID weight 100, explains that unknown ids are rejected (not empty), and mentions error code -2015. It also discloses the return fields and that status is echoed verbatim. This is strong behavioral disclosure, though it doesn't elaborate on rate-limit handling or output formatting details, which are minor for a single-item read.

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

Conciseness5/5

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

The description is well-structured with clear headers, bullet points, and examples. It front-loads the core purpose, then efficiently covers usage, returns, examples, and errors. Each section is concise and to the point, with no redundant or filler content. The overall length is appropriate for the tool's complexity.

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

Completeness5/5

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

For a single-order status-check tool, the description covers everything an agent needs: when to use it, when not to, the endpoint and weight, the parameter constraint, expected returns, examples, and error handling. The presence of an output schema further reduces the need to explain return structures. Nothing critical is missing for correct invocation.

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

Parameters5/5

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

The description explicitly explains the exclusivity constraint: 'Exactly one of order_id / quote_id — Binance rejects both together.' It provides concrete examples for both parameter choices. The schema's own descriptions are minimal (just 'Convert order id (from...)'), so the description adds critical semantic value by clarifying the mutual exclusion and usage, which the schema does not fully convey.

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?

The description opens with a clear, specific statement: 'Check one conversion's status by orderId or by the quoteId it came from.' It names the resource (conversion status), the verb (check), and the two acceptable identifiers. It also distinguishes itself from siblings by explicitly stating it checks one conversion, not a list. This is precise and unambiguous.

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

Usage Guidelines5/5

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

The description includes dedicated 'When to Use' and 'When NOT to Use' sections. It tells the agent exactly when to call it (after acceptance, after timeout/5xx) and when to use alternatives (`binance_get_convert_history` for lists, `binance_get_convert_open_limit_orders` for resting orders). This explicit routing is excellent guidance.

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

Deploy Server

Other Tools