Skip to main content
Glama

Get withdrawal status

get_withdrawal_status
Read-only

Poll the status of a withdrawal by trackingId (returned by submit_withdrawal). status is one of: PROCESSING — still in progress, keep polling (withdrawals have no cross-chain bridging leg, unlike deposits); SUCCESS — terminal, withdrawal completed; FAILED — terminal, withdrawal did not go through. Rate limited to 20 calls/minute per caller, no more than one call every 3s.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
trackingIdYestrackingId returned by submit_withdrawal.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior5/5

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

The annotations already mark this as read-only and non-destructive, but the description adds substantial behavioral detail beyond that: the meaning of each status value, which states are terminal vs in-progress, and the rate limit (20 calls/minute, one call every 3s). No contradiction with 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 three sentences, each earning its place: purpose, status semantics, and rate limit. It is front-loaded with the action and resource, and contains no fluff or repetition.

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

Completeness4/5

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

For a one-parameter read-only poller with no output schema, the description conveys the essential operational details: status values, terminality, and rate limits. It doesn't explicitly outline the full response object shape, but the '`status` is one of' phrasing provides enough for an agent to invoke and interpret the call correctly.

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 coverage is 100% and the single parameter trackingId is already described in the schema. The description repeats the 'returned by submit_withdrawal' origin but adds no new parameter-level meaning, so the baseline 3 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 specific verb ('Poll'), a clear resource ('status of a withdrawal'), and the key input ('trackingId'). It also differentiates from the sibling get_deposit_status by noting withdrawals have no cross-chain bridging leg, unlike deposits, so an agent can distinguish between the two tools.

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

Usage Guidelines4/5

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

The description gives explicit polling behavior: keep polling while PROCESSING and stop at terminal states (SUCCESS/FAILED). It also provides concrete rate limit guidance. It does not explicitly name get_deposit_status as the alternative for deposits, but the 'unlike deposits' note provides strong contextual guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources