get_block_height
Retrieve the current block height for a Solana network by specifying mainnet-beta, devnet, or testnet.
Instructions
Get the current block height
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | No | Solana network |
Retrieve the current block height for a Solana network by specifying mainnet-beta, devnet, or testnet.
Get the current block height
| Name | Required | Description | Default |
|---|---|---|---|
| network | No | Solana network |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It fails to mention that the tool returns a numeric value, that it requires no arguments, or that the network parameter affects which blockchain's height is retrieved.
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 description is a single, brief sentence that conveys the core purpose. It is front-loaded and efficient, though it could benefit from a tiny bit more detail without becoming verbose.
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?
For a simple tool with one optional parameter and no output schema, the description is adequate but lacks mention of what the return value represents (e.g., integer block height) and that the network parameter is optional.
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?
Schema coverage is 100% with one parameter 'network' having a clear description and enum. The description does not add additional meaning beyond the schema, meeting the baseline expectation.
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 'Get the current block height' clearly states the verb (Get) and resource (current block height). It distinguishes itself from sibling tools that retrieve other on-chain data, but does not explicitly differentiate.
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?
The description provides no guidance on when to use this tool versus alternatives. It does not specify that the network parameter defaults to mainnet-beta or that this tool is appropriate only for checking the latest block height.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.