get_market_stats
Get aggregate statistics — total markets, categories, sources, and volume.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Get aggregate statistics — total markets, categories, sources, and volume.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full burden of behavioral disclosure. It explains the returned data categories but does not mention side effects, authentication, rate limits, or whether the stats are computed in real-time. The verb 'Get' implies read-only, but this is not explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, front-loaded with the action and resource, and immediately lists concrete output components. Every word earns its place with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with no output schema, the description adequately explains what is returned. It could be slightly more precise about what 'volume' refers to (e.g., trading volume) or whether stats are global across all markets, but given the low complexity, it is largely sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4 per the rubric. The description adds no parameter-specific information because there are none to document; it instead lists what the returned statistics contain, which is not parameter semantics but contributes to overall clarity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies a clear action ('Get') and resource ('aggregate statistics'), enumerating the exact components returned (total markets, categories, sources, volume). This distinguishes it from siblings like list_markets and search_markets, which are likelier to return individual market records.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving a high-level market overview, and the term 'aggregate' contrasts with sibling tools, but there is no explicit guidance on when to choose this tool over alternatives or any exclusions. The context is sufficient for a simple stats endpoint.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.