get_gas_demo
Get free real-time gas prices for 4 major EVM chains (Ethereum, Base, Arbitrum, Optimism). Rate limited 10/hr.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Get free real-time gas prices for 4 major EVM chains (Ethereum, Base, Arbitrum, Optimism). Rate limited 10/hr.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the rate limit (10/hr) but fails to mention if the operation is read-only, whether it is destructive, or any other behavioral traits such as data freshness or response format.
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 that conveys the essential information without any filler. Every word is purposeful, and the information is front-loaded.
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 tool with no parameters, no output schema, and no annotations, the description is adequate but not complete. It covers the core function and rate limit but does not hint at the response structure or data format, which an agent might need to process the output.
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, and the input schema is empty with 100% coverage. Since there are no parameters to explain, the description need not add parameter meaning. A baseline of 4 is appropriate.
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 clearly states the tool gets real-time gas prices for 4 specific EVM chains. The verb is explicit, and the resource is well-defined. However, it does not explicitly differentiate from sibling tools like 'get_cheapest_chain' or 'get_gas_basic' based on the description alone.
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 mentions rate limiting (10/hr) as a constraint but provides no guidance on when to use this tool versus its siblings. There is no comparison or recommendation about alternatives, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool has a clearly distinct purpose: get_cheapest_chain gives a direct recommendation, get_gas_basic and get_gas_premium provide comparisons over different chain sets, and get_gas_demo offers free rate-limited data. No overlap in functionality.
Most tools follow the pattern get_gas_* (basic, demo, premium), but get_cheapest_chain breaks the pattern by omitting 'gas'. However, all names are clear and use snake_case with descriptive verbs.
Four tools is appropriate for a focused gas optimizer server: a direct recommendation, two comparison tiers (basic and premium), and a free demo. No excess or missing essential functionality.
The set covers the core need of finding the cheapest EVM chain with different coverage levels and pricing tiers. A gap might be the lack of historical gas data or per-chain detailed info, but for the stated purpose it's adequately complete.