Ordiscan: checkRuneUnlock
checkRuneUnlockCheck when a specific rune name becomes available to etch.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the rune (spacers like • are automatically removed) |
checkRuneUnlockCheck when a specific rune name becomes available to etch.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the rune (spacers like • are automatically removed) |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds minimal behavioral context (availability timing) but does not disclose return format, edge cases, or block-height semantics. No contradiction with annotations.
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 focused sentence, front-loads the action and resource, and contains no filler or redundant information.
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 tool is simple with one documented parameter and strong annotations, but there is no output schema and the description does not clarify what the return value looks like or how edge cases are handled. This leaves some ambiguity for the agent.
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 input schema has 100% coverage for the single 'name' parameter, including spacer removal behavior. The description adds no extra parameter semantics beyond 'specific rune name,' so it neither compensates nor harms.
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 uses a specific verb 'Check' and clearly identifies the resource: 'when a specific rune name becomes available to etch.' This distinguishes it from sibling tools like getRuneInfo or getLatestRunes by focusing on availability timing.
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 gives no explicit guidance on when to use this tool versus alternatives. It does not mention related tools, exclusion cases, or prerequisites, so the agent must infer applicability solely from the one-line purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.