block
Latest block tip via eth_blockNumber. 0.01 USDC. Not financial advice.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | No |
Latest block tip via eth_blockNumber. 0.01 USDC. Not financial advice.
| Name | Required | Description | Default |
|---|---|---|---|
| network | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark this as read-only and open-world, and the description adds the practical detail that it costs 0.01 USDC and uses the eth_blockNumber RPC method. There is no contradiction, and no hidden mutation or side effect is implied.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The core information is front-loaded in a single clear sentence: 'Latest block tip via eth_blockNumber.' The added cost note is useful, though 'Not financial advice' is extraneous and slightly reduces focus.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description gives the essential purpose and cost but omits how the network parameter behaves (especially 'both'), whether the result is a single block number or per-network values, and when to prefer this over sibling tools. For a simple one-parameter read-only tool this is mostly adequate, but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description does not mention the network parameter at all, despite the schema exposing an enum of bsc/base/both. It also fails to explain what 'both' returns or whether network has a default. With 0% parameter coverage in the description, the agent has no semantic guidance beyond the raw enum values.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool returns the latest block tip via eth_blockNumber, so the main operation is obvious. It does not explicitly differentiate this tool from sibling tools like gas or tx_status, but the resource and verb are clear enough.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to use this tool versus its siblings, such as gas, pair_digest, or tx_status. The description also does not explain when to select particular network values or exclude cases. The only extra sentence is 'Not financial advice', which is not usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.