get_account_balance
Screenshot credits and free monthly allowance remaining for the calling identity.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Screenshot credits and free monthly allowance remaining for the calling identity.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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?
With no annotations, the description carries the full burden. It clearly indicates this is a read operation (no side effects) by specifying it returns credits and allowance. However, it does not disclose any potential latency or authentication requirements, though these are likely implicit.
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 a single sentence of 12 words, no filler, front-loaded with key information. Every word earns its place.
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?
For a simple read-only tool with no parameters and no output schema, the description is fairly complete. It specifies what is returned and for whom. However, it does not detail the return format (e.g., data types, structure), which would be helpful given no output schema.
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?
There are zero parameters, so schema coverage is 100%. Per guidelines, baseline for 0 params is 4. The description adds no parameter information, but none is needed.
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 clearly states the tool retrieves 'screenshot credits and free monthly allowance remaining' for the calling identity. It uses a specific verb ('get') and resource ('account balance'), and is distinct from sibling tools like 'create_credit_checkout' or 'get_screenshot_batch'.
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 implies usage for checking remaining credits/allowance, but does not explicitly state when to use this tool vs alternatives. No exclusion criteria or alternative tool references are provided, leaving the agent to infer context from tool names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.