Skip to main content
Glama

agentscoin_gas

Destructive

Fetch current gas prices on Ethereum mainnet and AgentsCoin. Costs 0.1 AGENT per call.

Instructions

Get current gas price on Ethereum mainnet + AgentsCoin (premium data). Costs 0.1 AGENT.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
privateKeyNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.6

TDQS

B3.3/5.0
Behavior4/5

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

Annotations declare readOnlyHint=false and destructiveHint=true, which is otherwise confusing for a 'get' operation. The description resolves this by disclosing that the call costs 0.1 AGENT, i.e. it spends funds — exactly the behavior the annotations flag. It does not, however, state whether a funded/unlocked wallet is required or whether the charge is per-call.

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?

Two short sentences, front-loaded with the capability and followed by the cost caveat. No filler; every clause carries information.

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?

With no output schema and no annotations describing the return payload, the description is adequate on scope and cost, but silent on the privateKey parameter and on what the gas figure looks like (single value, per-chain values, units). Enough to attempt a call, not enough to call it confidently.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the single parameter (privateKey, not even required) is never mentioned in the description. The cost line implies a funded wallet is needed, but nothing explains what privateKey is for or when it must be supplied.

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?

States a specific verb+resource: fetching the current gas price, and names the two chains covered (Ethereum mainnet + AgentsCoin), which separates it from the generic agentscoin_price sibling. It is clear without opening the schema, though it does not explicitly name the alternative tools.

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?

The only decision-relevant information is the price ('Costs 0.1 AGENT') and the 'premium data' tag. There is no statement of when to prefer this over agentscoin_price or agentscoin_network_info, no prerequisites, and no exclusions. The cost note is a faint signal, not usage guidance.

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