Skip to main content
Glama
hydracds

Cardexscan MCP Server

by hydracds

get_token_trades

Retrieve all token trades across Cardano DEXes for a specified timeframe, with configurable limit and sort order.

Instructions

Get all token trades across Cardano DEXes for a given timeframe. Returns trade data with configurable limit and sort order.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of trades to return
orderNoSort order by time: 'asc' (oldest first) or 'desc' (newest first, default)desc
timeframeNoTime window for trades. Options: '15 mins', '30 mins', '1 hour', '4 hour', '12 hour', '1 day', '7 day'15 mins

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It implies a read operation and briefly notes the returned data can be limited and sorted, but says nothing about pagination, rate limits, auth requirements, or what fields 'trade data' actually contains, and there is no output schema to fill the gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences with the purpose front-loaded and no filler; the return-value note is brief. It is appropriately sized, though the second sentence adds little that the schema does not already convey.

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?

For a simple three-parameter, zero-required read tool with full schema coverage and no output schema, the description is minimally adequate. Its key shortfall is failing to distinguish this tool from similarly named trade-fetching siblings, which an agent needs in order to select 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 description coverage is 100%, so all three parameters (limit, order, timeframe) are already fully documented in the schema with defaults and enum values. The description only restates 'configurable limit and sort order', adding no meaning beyond the schema, which matches the baseline 3 for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Get') and resource ('token trades') with a scope qualifier ('across Cardano DEXes') and a timeframe, so the core purpose is clear. However, it does not differentiate itself from obvious siblings like get_global_trades or get_historical_trades, leaving an agent to guess which trade-fetching tool applies.

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

Usage Guidelines2/5

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

There is no explicit when-to-use guidance, no prerequisites, and no mention of alternatives. Given the presence of get_global_trades and get_historical_trades, the absence of any routing guidance is a real gap, though the timeframe mention offers weak implied context.

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