Skip to main content
Glama

Block info

block_info
Read-onlyIdempotent

Latest (or specified) Base block header: number, timestamp, transaction count, base fee. Preflighted so you never pay during an RPC outage.

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

TDQS

A3.6/5.0
Behavior4/5

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

Annotations already establish the operation is read-only and idempotent. The description adds a non-obvious behavioral guarantee: it is preflighted to avoid payment during an RPC outage, which is useful cost/safety context. There is nothing that contradicts the annotations.

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 with no filler. The first sentence front-loads the output fields and scope, and the second adds risk-relevant behavior. Every phrase earns its place.

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?

With one optional, fully documented parameter, an output schema, and read-only/idempotent annotations, the description covers the essentials: what is returned, the default, and a unique behavioral safeguard. It is complete enough for an agent to invoke correctly, though 'Base' might benefit from explicit clarification as the network name, keeping this at a 4 rather than 5.

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 sole parameter block is 100% covered in the schema, including formats and default 'latest.' The description's 'Latest (or specified)' restates the default without adding syntax or semantic detail, so the baseline of 3 applies.

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?

Description clearly identifies the resource returned (Base block header) and lists its fields (number, timestamp, transaction count, base fee), which distinguishes it from sibling tools that check balances, transactions, or formats. It lacks an explicit verb like 'retrieve' or 'fetch,' and does not mention alternatives, so it is clear but not maximally differentiated.

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 description provides no guidance on when to choose this tool over alternatives, nor any exclusions or side-by-side comparisons with siblings. The only hint is that it can return specified or latest block info, which is self-evident. This is a minimal-viability omission.

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
Disambiguation5/5

Each tool targets a distinct identifier type or specific function (e.g., IBAN vs. EIN vs. block info), with no overlap even among similar validation routines. The batch and rental tools combine distinct sub-checks without ambiguity, making misselection unlikely.

Naming Consistency4/5

Tool names are uniformly snake_case and mostly follow a descriptive pattern, but the action verbs vary (e.g., 'check', 'format', 'info', 'guard', 'verdict') rather than a single verb_noun structure. While clearly readable, the pattern is not perfectly uniform.

Tool Count2/5

At 28 tools, the server feels like a broad utility pack rather than a focused domain. The count exceeds the 'heavy' threshold and includes three distinct sub-domains (financial identifiers, rental fraud, on-chain queries), making the surface area hard to navigate coherently.

Completeness4/5

The identifier validation coverage is thorough (most common checksums), rental checks cover risk, deposit, and verdict, and on-chain tools handle balances, activity, and settlement history. Minor gaps exist (e.g., no token transfer history, no generic identifier detection) but agents can likely work around them.

Resources