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.

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.

TDQS

A4/5.0
Disambiguation3/5

Several tools overlap in the product discovery and payment status domains. discover_merchants, search_products, and get_merchant_profile all relate to finding products/merchants, though descriptions clarify intended use. Similarly, check_paywall, get_checkout_status, and verify_receipt all deal with payment status/verification, creating potential agent confusion.

Naming Consistency4/5

Most tools follow a consistent lowercase verb_noun pattern (check_paywall, create_checkout, download_product, get_0g_health, etc.). The one outlier is agent_wallet_status, which is a noun phrase instead of verb-first, but it still uses underscores and fits thematically.

Tool Count4/5

13 tools is within the ideal range and the server covers payments, product discovery, and verification. A few tools like get_0g_health and setup_instructions feel tangential to the core payment flow, making the set slightly heavier than necessary but still reasonable.

Completeness4/5

The payment lifecycle is well covered: discover/search products, pay via checkout or direct merchant payment, download digital goods, and verify receipts. Minor gaps exist such as no explicit refund or transaction history tool, but agents can work around these by using existing verification and wallet status tools.