Get Balance
get_balanceRead available and pending test-USDC for one owned wallet.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes |
get_balanceRead available and pending test-USDC for one owned wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds useful context about owned-wallet scope and balance breakdown (available vs pending), but does not describe response shape, error conditions, or other behavioral details. This is adequate but not rich.
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?
A single, front-loaded sentence with no filler. Every word contributes: read action, available/pending distinction, asset type, and ownership requirement.
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 required parameter, and existing annotations, the description is sufficiently complete. It conveys the core return concept (available and pending test-USDC) and the ownership constraint. More detail about response structure would be nice but is not essential here.
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 description coverage is 0%, so the description must compensate. It does clarify that walletId refers to an owned wallet, which is meaningful, but it does not explain identifier format, how to obtain it, or any constraints beyond ownership.
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 ('Read') with a clear resource ('available and pending test-USDC') and scoping ('one owned wallet'). This clearly distinguishes it from sibling tools like get_wallet or list_transactions.
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 clearly indicates this is for reading balances of an owned wallet, providing useful context for when to use it. It does not explicitly name alternatives or exclusions, but the simple scope makes the intended use unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.