Skip to main content
Glama

Base Block Header Info

block_info
Read-onlyIdempotent

Latest (or specified) Base block header: number, timestamp, transaction count, base fee. Preflighted before payment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
blockNoBlock number as hex (0x…) or decimal, or a tag (latest/earliest/pending/finalized/safe); defaults to latest.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
toolNo
blockNo
scopeNo
validYes
reasonNo
tx_countNo
retryableNo
timestampNo
block_numberYes
base_fee_gweiNo
timestamp_isoNo

Schema Changelog

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

  1. Added
  2. Removed
  3. First observed

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds the concrete list of returned header fields and the 'latest or specified' behavior, but does not disclose anything beyond that, such as response structure or potential edge cases.

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, dense sentence that front-loads the core purpose and result fields, then adds the key usage hint. There is no filler or redundant restatement of the tool name.

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 read-only, one-parameter tool with annotations and an output schema present, the description is largely sufficient. The only minor gap is that it does not explicitly orient the agent toward when a 'specified' block is preferable to 'latest', but the schema and output schema carry most of that burden.

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 documents the single 'block' parameter with 100% coverage, including hex/decimal/tag formats and the default value. The description only restates 'latest (or specified)' and does not add meaningful parameter semantics beyond what the schema provides.

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 resource (Base block header) and the information returned (number, timestamp, transaction count, base fee), making it easy to understand what the tool does. It does not explicitly contrast itself with siblings like tx_activity or crypto_ticker, but the specific resource and fields are enough to distinguish it in most cases.

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?

The phrase 'Preflighted before payment' gives a concrete usage context: this tool is intended for checking block state ahead of payment actions. It does not explicitly state when not to use it or name alternatives, so it stops short of full routing 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

B3.2/5.0
Disambiguation2/5

Several tools occupy the same conceptual lane: batch_validate and vendor_onboarding_pack wrap the same individual *_check validations, the rental tools overlap heavily, and the on-chain balance/activity tools have fuzzy boundaries. Long descriptions help, but an agent can easily misselect between single, batch, and packaged verification calls.

Naming Consistency3/5

Snake_case is used throughout, but the naming conventions are mixed: validation tools vary between *_check, *_format_check, and *_number_format, while other tools use bare noun phrases like autonomous_commercial_pipeline or action-first names like browse_*, get_*, and create_*. The inconsistency is readable but not predictable.

Tool Count2/5

With 45 tools, the surface is far too large and sprawls across identifier checks, on-chain preflight, rental fraud, GPU cluster brokerage, and unrelated utilities like markdown scraping and schema verification. Several bundled tools could be consolidated to reduce redundancy.

Completeness3/5

The validation and preflight side is broad, and invoice create/get is covered, but the lifecycle is incomplete: there is no invoice update/cancel/list, no payment execution or refund path, and marketplace discovery tools lack booking or reservation counterparts. This is workable for verification-focused tasks but not a complete autonomous commerce rail.

Resources