Skip to main content
Glama

Check RAVN swap status

ravn_status
Read-only

Poll the status of a swap by its quoteToken and the ref returned by ravn_execute (deposit address for DEPOSIT venues, statusRef for SIGNATURE venues). Status is authoritative where the venue exposes it; some venues (Rift, Jupiter, Bebop, 0x Gasless) report 'unknown' honestly rather than guessing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refYesdeposit address (DEPOSIT venues) or statusRef (SIGNATURE venues) from ravn_execute
apiKeyNo
quoteTokenYes

TDQS

A4.2/5.0
Behavior4/5

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

Beyond the readOnlyHint annotation, the description discloses important behavior: status is authoritative where the venue exposes it, and some venues report 'unknown' honestly rather than guessing. This helps an agent correctly interpret ambiguous results and avoids false assumptions about failures.

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 two sentences with no filler. It front-loads the verb and resource, then adds essential venue-specific context and an important caveat. Every sentence earns its place.

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?

The description covers the core inputs, the source of the ref, and how to interpret venue-reported statuses, including the 'unknown' case. It doesn't enumerate possible status values or polling behavior, but it is sufficient for an agent to invoke the tool correctly in the described workflow.

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 only 33%, so the description partially compensates by explaining the semantics of 'ref' in detail and indicating quoteToken is part of the lookup key. However, quoteToken is not fully defined and apiKey is not mentioned at all, leaving some parameter meaning unresolved.

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 clearly states the tool's function: polling swap status using quoteToken and the ref from ravn_execute. It also disambiguates the ref by venue type, making the tool's purpose specific and distinguishable from siblings like ravn_execute or ravn_quote.

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 clear usage context: this tool is used after ravn_execute, using the returned ref and the relevant quoteToken. It does not explicitly state when not to use it or name alternative tools, but the dependency on ravn_execute's output makes the intended workflow clear.

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.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool maps to a clear lifecycle stage: health pre-checks routes, quote produces a token, execute turns it into a payload, btc_prepare_send handles a specific BTC deposit-to-PSBT step, and status polls the resulting swap. No two tools are likely to be confused.

Naming Consistency4/5

The core tools use a clean ravn_<verb> pattern: quote, execute, status, health. The outlier is ravn_btc_prepare_send, which front-loads the asset and combines two actions, breaking the verb-first pattern slightly.

Tool Count5/5

Five tools is a well-scoped size for a swap execution server. Each tool earns its place and covers a distinct part of the workflow without redundancy.

Completeness4/5

The core swap lifecycle is covered end-to-end: quote, execute, status, health, plus a BTC-specific helper for a common deposit flow. The main gap is the lack of an explicit tool for discovering supported chains/assets/venues, forcing agents to probe via ravn_quote.

Resources