Skip to main content
Glama

MCPFax On-Chain Toolkit

Balance, next nonce, and whether an address is a contract

address_info

Native balance, the next nonce to use, and whether the address holds contract code — the three things needed before sending from or to an address. Pass 'token' as well to read an ERC-20 balance for the same address in the same call. Values are read at the latest block, so a reorg can change them. Costs $0.008 USDC per call via x402 on Base.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainNoethereum, base, arbitrum, optimism or polygon. Defaults to base.
tokenNoOptional ERC-20 contract address to also report that token's balance.
addressYes0x-prefixed 20-byte address.

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the burden, and it does well: it discloses that values are read at the latest block and may change due to reorgs, and it states the exact cost per call. It does not cover response shape or error cases, but the disclosed read-only nature and pricing are meaningful.

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, each earning its place: core outputs, optional token usage, and behavioral/cost caveats. The most important information is front-loaded, and there is no redundancy or filler.

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 simple read tool with three documented parameters and no output schema, the description is complete. It enumerates the returned values, the optional token expansion, the chain context via schema, and the cost/reorg caveats. An agent has enough to call 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?

Schema coverage is 100%, so the baseline is 3. The description adds a small amount of value by explaining the token parameter's purpose in context, but it mostly restates what the schema already says. It does not harm or significantly extend parameter understanding.

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 names exactly what the tool returns: native balance, next nonce, and whether the address holds contract code. This clearly separates it from siblings like token_info and tx_status by focusing on pre-send address state.

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

Usage Guidelines4/5

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

It gives a clear use case: the three things needed before sending from or to an address. It also explains when to add the token parameter. It does not explicitly compare against sibling tools, but the context is sufficient for an agent to know when to invoke it.

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