Skip to main content
Glama

player_unclaimed_balance_history

Retrieve a player's unclaimed balance history for a specified token by providing username and token type, showing reward actions, amounts, blocks, transaction IDs, and status.

Instructions

Return one account's unclaimed-balance history for one token from GET /players/unclaimed_balance_history. Both username and token_type are required, and omitting token_type returns HTTP 200 carrying the message that player and token are required rather than an HTTP failure. The response is a bare array; each row carried a reward action, an id, the account, token, type, a string amount, a block number, a transaction id, dates, a destination account and a status. On the captured account SPS returned rows while DEC returned an empty array. Only DEC and SPS were tried on this route. This server applies its general 100-row and 256 KB result bounds to the array and does not claim the bounded answer is the full upstream history.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usernameYes
token_typeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0

TDQS

A4.2/5.0
Behavior5/5

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

With no annotations present, the description carries the full behavioral burden and does so richly: it discloses that omitting token_type returns HTTP 200 with a message rather than an error, that the response is a bare array with specific row fields, that SPS and DEC can return different results, and that server-side 100-row and 256 KB bounds may truncate the answer. It even warns that the bounded answer is not guaranteed to be the full upstream history.

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

Conciseness4/5

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

Every sentence contributes useful information and the purpose is front-loaded before behavioral caveats. The paragraph is dense and slightly rambling, with anecdotal test results woven in, but it remains appropriately sized for the complexity.

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 two-parameter tool with no output schema and no annotations, the description is exceptionally complete: it covers required parameters, response shape, row fields, tested token values, and truncation behavior. Nothing an agent needs to understand the tool's contract is left unsaid.

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 0%, so the description must compensate for parameter meaning. It states both parameters are required, identifies username as an account and token_type as a token selector, and names the tested values DEC and SPS. However, it does not define the expected format or full valid value space for either parameter beyond these observations.

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 uses a specific verb ('Return') and names the precise resource: one account's unclaimed-balance history for one token, tied to an exact upstream endpoint. The word 'history' plus per-account/per-token scoping is enough to distinguish it from balance-oriented siblings even without naming them.

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

Usage Guidelines3/5

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

The description clearly implies this is for fetching a single account's per-token unclaimed-balance history and stresses that both username and token_type are required. However, it never explicitly says when to prefer this tool over player_unclaimed_balances, player_archived_balances, or other history-style siblings, and it offers no exclusion guidance.

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

Deploy Server

Other Tools