Skip to main content
Glama
trustxai

amazing-binance-mcp

by trustxai

binance_get_book_ticker

Read-onlyIdempotent

Get best bid/ask price and quantity for one, many, or all symbols. View current spread and top-of-book size without full order book depth.

Instructions

Fetch the best bid/ask price and quantity for one, several, or all symbols.

Calls GET /api/v3/ticker/bookTicker. Weight: symbol → 2; omitted or symbols → 4.

When to Use:

  • For the current spread and top-of-book size without the full depth of binance_get_order_book.

When NOT to Use:

  • For multiple price levels — use binance_get_order_book.

Returns: Markdown: a table of bid/ask price+qty per symbol, capped at 100 rows. JSON: count/shown plus the tickers.

Examples: params = {"symbol": "BTCUSDT"}

Error Handling: An unknown symbol raises Binance -1121 Invalid symbol.

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 declare readOnlyHint, idempotentHint, and destructiveHint false. The description adds valuable context beyond those: the exact API endpoint, weight costs per parameter combination, row cap (100), return format details, and a specific error code. It enriches the safety and operational picture without contradicting annotations.

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-organized with headings for purpose, use cases, returns, examples, and errors. Every sentence adds actionable information; no filler or repetition. The most critical information (what it fetches) is front-loaded, and the alternative tool is named early.

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?

Given the tool's complexity (multiple symbol modes, response formats, weight variations, error handling), the description covers endpoint, rate-limit weight, use-case boundaries, return structure, row limit, and error behavior. With annotations and an output schema also present, nothing an agent needs to call it correctly 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?

The schema already describes symbol, symbols, and response_format with mutual exclusivity and defaults. The description adds a concrete example (params = {'symbol': 'BTCUSDT'}) and explains the effect of response_format on output (Markdown vs JSON structure), which goes beyond the schema's terse 'Output format.' Since the schema carries most parameter documentation, a 4 is appropriate.

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 states a precise verb-resource pair ('Fetch the best bid/ask price and quantity') with explicit scope (one, several, or all symbols) and distinguishes itself from binance_get_order_book by clarifying it provides top-of-book size without full depth. This leaves no ambiguity about the tool's function.

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?

Dedicated 'When to Use' and 'When NOT to Use' sections explicitly name the sibling binance_get_order_book as the alternative for multiple price levels, giving clear selection criteria. This fully covers when to invoke this tool versus others.

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