Skip to main content
Glama

sodax_relay_get_transaction_packets

Read-only

List every cross-chain packet emitted by a given source transaction. Use this to track relay status — a packet is complete when status='executed' and dst_tx_hash is populated.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
formatNoResponse format: 'json' for raw data or 'markdown' for formatted textmarkdown
txHashYesREQUIRED: The source-chain transaction hash whose packets you want to inspect
chainIdYesREQUIRED: Intent-relay chain ID of the source chain (decimal string, e.g. '146'). Call sodax_get_relay_chain_id_map to translate from a chain key.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, and the description adds meaningful behavioral context by explaining how to interpret packet completeness (status='executed' and dst_tx_hash populated). This goes beyond the structured annotations without contradicting 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?

Two sentences, front-loaded with the core purpose, and each sentence earns its place. The first defines what the tool does; the second explains the use case and success criteria. No redundant or vague text.

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?

Given the tool's simplicity (read-only list, three parameters with thorough schema descriptions, no output schema), the description adequately covers purpose, usage, and result interpretation. It could mention potential large result sets or pagination, but that is not essential for this low-complexity tool.

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 description coverage is 100%, with each parameter (chainId, txHash, format) already fully described in terms of meaning and defaults. The description adds no new parameter-level semantics, 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 uses a specific verb ('List') and resource ('every cross-chain packet emitted by a given source transaction'), clearly distinguishing it from sibling tools like sodax_relay_get_packet (which likely targets a single packet) and other get_ tools. The scope is explicit and actionable.

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?

Provides explicit use-case guidance: 'Use this to track relay status' and defines a clear completion criterion. It does not explicitly name alternatives or when-not-to-use, but the focused wording and sibling structure imply this tool is for packet enumeration while sodax_relay_get_packet handles single-packet lookups.

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

A3.5/5.0
Disambiguation3/5

Several tools have overlapping scopes: sodax_get_token_supply, sodax_get_total_supply, and sodax_get_circulating_supply all provide supply data, and the four money_market_* getters could be conflated. However, most tools are distinct and descriptions help.

Naming Consistency3/5

The sodax_* tools follow a consistent get_<resource> pattern, but docs_* tools mix camelCase (getPage, searchDocumentation) with snake_case (list_tools), and there are non-get verbs like refresh and submit. This inconsistency makes the naming pattern less predictable.

Tool Count2/5

With 40 tools, the server exceeds the 25-tool threshold for even a comprehensive API. Many endpoints are granular (e.g., separate supply tools) and could be consolidated, making the set feel bloated.

Completeness4/5

The tools cover a wide range of SODAX features: docs, money market, AMM, relay, solver, token data, and user positions. Missing are write operations (except relay_submit) and a few data endpoints like pool details, but for a query-oriented MCP it's largely complete.