Skip to main content
Glama

dex_tx_list

Destructive

List wallet transaction history (transfers). → swap_history_list for swap/bridge orders. → tx_detail for single tx by hash.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cursorNoPagination cursor
addressNoWallet address filter
end_timeNoEnd time (Unix seconds or ISO8601)
page_numNoPage number (1-based)
mcp_tokenNoMCP session token obtained from login (dex_auth_google_login_poll or dex_auth_gate_login_poll). MUST be provided in every call to this tool after login; omitting it will result in 403
page_sizeNoPage size (default 20)
account_idYesAccount ID
start_timeNoStart time (Unix seconds or ISO8601)

TDQS

A3.7/5.0
Behavior1/5

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

The description states a read-only listing operation but the annotations declare destructiveHint=true and readOnlyHint=false, which is a direct contradiction. The description also does not disclose any behavioral traits beyond listing (e.g., pagination behavior or authentication requirements), leaving the agent confused about the tool's safety.

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 extremely concise: a single sentence with clear directional arrows to alternatives. Every word contributes to the purpose and usage guidance, with no unnecessary filler.

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

Completeness3/5

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

The description gives the essential purpose and points to alternatives, but does not mention return format, pagination behavior, or auth requirements. The annotation contradiction further reduces trust. Given the rich schema (all params described) and the simplicity of a list operation, it is minimally adequate but clearly incomplete.

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%, so the baseline is 3. The description adds no parameter-level semantics beyond the schema; it does clarify the tool is for transfers, which could loosely inform the use of the address parameter, but that's marginal value.

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: 'List wallet transaction history (transfers).' It uses a specific verb (List) and resource (wallet transaction history), and explicitly distinguishes it from sibling tools by directing to swap_history_list for swap/bridge orders and tx_detail for single tx by hash.

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 description gives explicit guidance on when to use this tool versus alternatives: '→ swap_history_list for swap/bridge orders. → tx_detail for single tx by hash.' This clearly defines the scope for this tool (transfers) and points to the right tools for other transaction types.

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

B3.4/5.0
Disambiguation4/5

Most tools have clear, distinct roles (auth flows, market data, swap stages, wallet operations). A few ambiguities exist, such as dex_tx_get_sol_unsigned vs dex_tx_transfer_preview and dex_agentic_report's name not matching its description, but overall agents can reliably select the correct tool.

Naming Consistency3/5

Naming is inconsistent: while all tools share the dex_ prefix and category segments, some use get_*, others list_*, and several are noun phrases (dex_chain_config, dex_tx_gas, dex_tx_detail). Auth tool ordering also varies (gate_login_start vs login_gate_wallet), making the pattern less predictable.

Tool Count2/5

With 47 tools, the server is over-scoped and burdensome for agents to navigate. Even though the broad DEX domain justifies many features, this exceeds the 25+ threshold for 'too many' and could benefit from consolidation into fewer, higher-level tools.

Completeness4/5

The tool set comprehensively covers DEX workflows: auth, market data, token info, wallet balances, transfer/swap pipeline, cross-chain bridge, and x402 payments. Minor gaps include lack of explicit swap cancellation or withdrawal execution, but these are secondary to the core functionality.