Skip to main content
Glama

address_report

One-call snapshot of a Base address: ETH balance, USDC balance, tx count, and whether it is a contract.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYes0x address on Base

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It openly states what the tool returns and frames the operation as a non-mutating snapshot, which makes the behavior reasonably transparent. It does not mention edge cases or error behavior, but for a simple read-only aggregation tool this is adequate.

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?

The description is a single compact sentence that front-loads the key purpose and then lists the concrete output components. Every word earns its place, with no filler or redundant elaboration.

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

Completeness4/5

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

For a one-parameter read-only snapshot tool with no output schema, the description supplies enough context about what the tool returns and the target resource. It could be more explicit about how the returned values are formatted or when to prefer sibling tools, but overall it is sufficiently complete for an agent to 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?

Schema description coverage is 100%, and the parameter 'address' is already described as '0x address on Base'. The description essentially repeats the same address scope without adding new semantic detail such as formatting requirements or accepted network variants, so it does not exceed the schema baseline.

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?

The description clearly identifies the tool as a snapshot tool for a Base address and enumerates the specific data it returns: ETH balance, USDC balance, tx count, and contract status. It is not a tautology and distinguishes itself from siblings like gas_now and tx_status by focusing on a bundled address overview, though it does not explicitly name a sibling alternative.

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

Usage Guidelines3/5

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

The phrase 'One-call snapshot' implies the tool is for getting multiple address attributes in a single call, which provides some usage context. However, there is no explicit guidance about when to choose this over siblings like token_balance or token_info, nor any exclusions or conditions.

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.9/5.0
Disambiguation4/5

Each tool targets a distinct query type: address snapshot, gas price, token balance, token metadata, and transaction status. The only minor overlap is that address_report includes USDC balance, which could also be retrieved via token_balance, but the descriptions make the intended use clear.

Naming Consistency5/5

All tool names follow a consistent snake_case noun or noun_verb pattern: address_report, gas_now, token_balance, token_info, tx_status. The naming is predictable and clearly indicates the subject and purpose of each tool.

Tool Count5/5

Five tools is well-scoped for a read-only Base chain intelligence server. Each tool covers a meaningful and distinct data need without redundancy or unnecessary bloat.

Completeness4/5

The set covers the core read-only needs for Base chain data: balances, token metadata, gas, and transaction status. Minor gaps exist such as token transfer history or block details, but the current surface handles common queries without major dead ends.