Skip to main content
Glama
trustxai

amazing-binance-mcp

by trustxai

binance_get_api_trading_status

Read-onlyIdempotent

Check if Binance spot trading is locked, view the recovery time, and identify the trigger that caused the account-wide trading lock.

Instructions

Report whether spot trading is locked and what triggered it.

Calls GET /sapi/v1/account/apiTradingStatus (SIGNED, IP weight 1). When Binance's abuse-prevention system trips (excessive cancel ratio, etc.) it locks trading for a cooldown window; this reports the lock state, the recovery ETA, and which trigger fired.

When to Use:

  • When order placement starts failing for no obvious filter/balance reason, to check for a temporary account-wide trading lock.

When NOT to Use:

  • To check the account's general standing — use binance_get_account_status.

  • To check key permission flags — use binance_get_api_restrictions.

Returns: A markdown block with isLocked, the planned recovery time (rendered UTC), and the trigger-condition thresholds (GCR = GTC cancellation ratio, IFER = IOC/FOK expiration ratio, UFR = unfilled ratio), or raw JSON with response_format="json".

Examples: params = {}

Error Handling: -2015 means the key lacks Reading permission or this IP is not allowlisted.

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.9/5.0
Behavior5/5

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

Annotations already mark the tool read-only, idempotent, and non-destructive; the description adds the endpoint, SIGNED/auth requirement, IP weight, the abuse-prevention lock cooldown context, and the -2015 error meaning. This is exactly the kind of behavioral context that annotations do not provide, and it does not contradict them.

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 organized into clear labeled sections (purpose, when to use, when not to use, returns, examples, error handling) with no filler. Every sentence adds operational value, and the main purpose is front-loaded.

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?

The description covers selection criteria, exact endpoint, authentication/error behavior, return format options, and example invocation. For a single-parameter read-only status tool, nothing needed for correct invocation is missing.

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

Parameters4/5

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

There is only one parameter (response_format), and the description demonstrates an empty params object plus the json override, while the schema supplies the enum/default details. Given the near-zero schema coverage signal, the description compensates well enough for the single optional parameter.

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 first sentence gives a specific verb and resource: 'Report whether spot trading is locked and what triggered it.' It is further distinguished from sibling tools by naming binance_get_account_status and binance_get_api_restrictions as different checks, so an agent can select it correctly.

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 'When to Use' section states a concrete trigger condition (order placement failing for no filter/balance reason) and the 'When NOT to Use' section explicitly names the alternatives for general account status and key permission flags. This leaves no ambiguity about when this tool should be chosen over siblings.

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