Skip to main content
Glama

agentscoin_balance

Read-only

Check the $AGENT balance for an address or omit the address to use your saved wallet.

Instructions

Check the AGENT balance of an address (defaults to your saved wallet).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressNo0x... address; omit to use your wallet

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.6

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds the useful behavioral detail that the address defaults to the saved wallet, but it does not disclose return format, error cases, or any network-specific behavior beyond what annotations provide.

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?

A single front-loaded sentence with zero waste. It communicates the action, the resource, and the default address behavior immediately.

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

Completeness4/5

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

For a low-complexity, read-only, one-parameter tool with full schema coverage and annotations, the description is largely sufficient. It could be improved by briefly noting the return value or error behavior, but no critical calling information is missing.

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 description coverage is 100%, so the single optional parameter is already fully documented in the schema. The description restates the default behavior ('defaults to your saved wallet') but adds no syntax, format, or validation detail beyond the schema.

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

Purpose4/5

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

States a specific verb ('Check') and resource ('AGENT balance of an address'), so the purpose is clear. However, it does not explicitly differentiate itself from sibling tools like agentscoin_token_info or agentscoin_price, leaving some ambiguity for an agent that must choose among similar-sounding financial queries.

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

Usage Guidelines2/5

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

The description gives no when-to-use guidance, no exclusions, and no alternatives. The only contextual note is that the address defaults to your saved wallet, which is a behavior detail rather than usage guidance.

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