Skip to main content
Glama

MCPFax On-Chain Toolkit

Current gas price on one or several chains

gas_now

Live gas price on Ethereum, Base, Arbitrum, Optimism or Polygon — in wei and gwei, plus what a plain 21,000-gas transfer would cost in the native token, which is the number you actually budget with. Pass several chains comma-separated to compare where to execute. Call this immediately before sending a transaction: gas moves every block, so the answer is good for seconds, not minutes. Costs $0.005 USDC per call via x402 on Base.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainNoOne or more of ethereum, base, arbitrum, optimism, polygon — comma-separated, e.g. 'base,ethereum'. Defaults to base.

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations to lean on, the description fully carries the burden of behavioral disclosure. It reveals the output units (wei, gwei, native token cost), the multi-chain capability, the freshness limitation, and even the per-call cost of $0.005 USDC via x402 on Base. This is unusually transparent.

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?

Three sentences with zero waste: the first defines output, the second explains multi-chain usage, and the third covers timing and cost. Core information is front-loaded, and every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with one optional parameter and no output schema, the description is complete. It explains the key return values (wei, gwei, transfer cost), the accepted inputs, the freshness caveat, and the monetary cost — everything an agent needs to select and invoke it 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?

The input schema already provides 100% coverage of the single 'chain' parameter, including valid values, comma-separated format, examples, and default. The description adds a use-case nuance ('compare where to execute') but does not meaningfully expand parameter semantics beyond the schema.

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

Purpose5/5

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

The description clearly states a specific action: providing live gas prices for five named chains and including a 21,000-gas transfer cost in the native token. This distinct focus on gas prices sets it apart from sibling tools like token_info or tx_status without ambiguity.

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

Usage Guidelines5/5

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

The description gives explicit timing guidance: 'Call this immediately before sending a transaction' and explains why ('gas moves every block, so the answer is good for seconds'). It also instructs how to compare chains with comma-separated values, which is practical usage guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool targets a clearly different resource or moment: address state, token contract metadata, gas price, transaction status, and the two sides of the data-request marketplace. demand_report and request_data are related but cleanly split between aggregate supply/demand and a specific inquiry. No pair is likely to cause an agent to pick the wrong tool.

Naming Consistency4/5

All names are lowercase snake_case and mostly follow a descriptive noun-noun pattern like address_info, token_info, and tx_status. request_data is the one imperative-style outlier, and gas_now deviates from the noun-info pattern, but neither is confusing. The naming is broadly predictable with only minor deviations.

Tool Count5/5

Six tools is a well-scoped set for a focused on-chain data and utility MCP. Each tool has a distinct job and there is no redundancy or padding. The set feels neither too thin nor too heavy.

Completeness4/5

The paid tools cover the main pre-transaction checks (address, token, gas) and post-transaction confirmation, while the free tools form a closed loop for discovering and requesting additional data. Minor optional additions like chain metadata or transaction history are workable gaps and do not create dead ends. The surface is complete for its apparent read-heavy purpose.

Resources