get_aerodrome_yields
Fetch live Aerodrome DEX pool yields, APYs, and TVL on Base Mainnet ($0.003 USDC)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
I used the same url for two different postings.
Fetch live Aerodrome DEX pool yields, APYs, and TVL on Base Mainnet ($0.003 USDC)
| 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 provided, the description carries full behavioral disclosure responsibility. It does convey that the tool fetches live data and notes a $0.003 USDC cost, which is useful. However, it does not mention output format, refresh frequency, rate limits, or whether any external API dependency could affect behavior.
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 concise sentence that front-loads the core purpose. It adds the relevant network and cost detail without unnecessary fluff, making it easy to scan and understand.
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 simple parameterless read-only data fetch, the description covers what is returned (yields, APYs, TVL), where it operates (Base Mainnet), and the cost. It lacks explicit output-shape details, but the high-level return values are sufficiently described for an agent to form correct expectations.
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 there is no parameter semantics burden on the description. The empty input schema already conveys that no arguments are needed, making further explanation unnecessary.
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 names a specific action ('Fetch'), a specific resource ('Aerodrome DEX pool yields, APYs, and TVL'), and a specific network ('Base Mainnet'). It is clear enough to know what the tool does, though it does not explicitly distinguish itself from nearby siblings like base_analytics or data_feeds.
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 provides no guidance on when to use this tool versus alternatives such as base_analytics, data_feeds, or public_data_feed. It does not state any exclusion criteria, prerequisites, or recommended use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.