Skip to main content
Glama

Wallet Balance & Status

agent_wallet_status
Read-onlyIdempotent

Check the USDC balance for your agent wallet (or any address). If X-Coal-Agent-Key is set in your Claude config header, this auto-resolves your wallet's address. Otherwise pass address or agentPrivateKey. The server holds NO long-lived keys — every payment is signed per-request.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressNoPublic address to check (0x...). Optional if header is set.
agentPrivateKeyNoYour agent wallet private key. Optional if X-Coal-Agent-Key header is set.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint, openWorldHint, and idempotentHint annotations, the description adds valuable behavioral context: 'The server holds NO long-lived keys — every payment is signed per-request.' It also discloses the header-based auto-resolution behavior. This enriches the agent's understanding of the tool's security model and invocation behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, each earning its place: the first states the core purpose, the second explains address resolution via header or parameters, and the third provides a security assurance. No fluff or redundancy, and the main action is front-loaded in the first sentence.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only balance-checking tool with optional parameters, the description is complete. It covers authentication methods, the scope of addresses that can be checked, and a security note. There is no output schema, but the return value is self-evident for a balance check. The annotations already declare safety properties, and the description fills in the remaining context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents both parameters. The description adds context by connecting them to the header logic ('Otherwise pass `address` or `agentPrivateKey`'), but it doesn't provide new format or syntax details beyond the schema. This matches the baseline of 3 for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb+resource: 'Check the USDC balance for your agent wallet (or any address).' This clearly distinguishes the tool from sibling tools like check_paywall, get_checkout_status, and verify_receipt, which focus on payments, checkouts, and receipts rather than wallet balances.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage guidance on how to specify the address: if `X-Coal-Agent-Key` is set in the header, it auto-resolves; otherwise pass `address` or `agentPrivateKey`. While it does not explicitly name alternatives or exclusions, it clearly explains prerequisites and the two valid invocation patterns, which is more than most tool descriptions offer.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.