btc_address_balance
Bitcoin address balance and tx history.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes |
Bitcoin address balance and tx history.
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so the description bears full burden. It provides no behavioral information such as whether the operation is read-only, any rate limits, or what happens with invalid addresses. The description only states the basic function.
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 extremely concise, consisting of a single sentence. It is front-loaded with the core purpose. However, it may be too terse, missing necessary details for a well-rounded description.
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?
Given the tool's simplicity (one parameter, no output schema), the description covers the basic purpose but lacks details on what the response includes (e.g., how balance is returned, transaction history format). It is minimally adequate but not 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 input schema has 0% description coverage, and the description does not add any meaning beyond the parameter name 'address'. It does not specify the expected format (e.g., base58 vs bech32) or constraints. The parameter name alone provides basic semantics.
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?
Description states it retrieves Bitcoin address balance and transaction history, but lacks an explicit verb like 'Retrieve' or 'Get'. The purpose is clear but minimal, and does not differentiate from siblings like 'btc_mempool_fees' or 'crypto_price_simple'.
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 usage guidelines provided. The description does not specify when to use this tool, any prerequisites (e.g., valid address format), or alternatives among sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.