tx_status
Tx receipt/status via public RPC. 0.02 USDC. Not financial advice.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tx | Yes | Transaction hash 0x…64 | |
| network | Yes |
Tx receipt/status via public RPC. 0.02 USDC. Not financial advice.
| Name | Required | Description | Default |
|---|---|---|---|
| tx | Yes | Transaction hash 0x…64 | |
| network | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint and openWorldHint, and the description adds useful behavioral context: it uses a public RPC and charges 0.02 USDC. These are meaningful operational traits beyond the annotations, though payment mechanics and failure modes are not disclosed.
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 compact and front-loaded with the core purpose, followed by cost and a disclaimer. 'Not financial advice' is not operationally useful, but the overall structure is efficient and easy to scan.
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 read-only lookup with annotations covering safety, this is minimally adequate: the purpose and cost are stated. However, there is no output schema and the description only vaguely implies return shape via 'receipt/status'; payment mechanics and failure behavior are also unstated.
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 schema documents tx with a format description, and the network enum values bsc/base are self-explanatory. The tool description itself does not add parameter-level meaning, but with only two simple parameters and partial schema coverage, an agent can still invoke the tool correctly.
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 identifies the resource (transaction receipt/status) and the mechanism (public RPC), so an agent can tell this tool is for checking transaction status. However, it lacks an explicit verb such as 'get' or 'check', and it does not differentiate itself from sibling tools beyond the resource name.
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?
There is no explicit guidance on when to use this tool versus alternatives like token_meta or gas. 'Via public RPC' hints at public transactions, but the description does not state when to choose this tool, when not to, or what alternatives exist.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.