Skip to main content
Glama

player_current_rewards

Retrieve the current season's glint earnings for a Splinterlands player by username, showing totals per game format.

Instructions

Return the current season's glint totals for one account from GET /players/current_rewards. The measured public response carried a season_reward_info object with the season number and a glint figure per format. Some per-format glint fields were observed null on the captured account and carry no declared type; the wild and survival figures were observed as numbers. A missing figure is not evidence that the account earned nothing. One account and one season were captured; no claim is made about which formats carry a figure in general.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usernameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0

TDQS

A3.8/5.0
Behavior5/5

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

With no annotations, the description carries the full burden, and it does so unusually well. It discloses the observed response shape, notes that some per-format fields may be null and have no declared type, warns that a missing figure is not evidence of zero earnings, and clarifies the limited one-account/one-season sampling.

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?

The action is front-loaded and every sentence adds meaningful context, especially the null and sampling caveats. It is slightly dense, but the length is justified by the behavioral transparency it provides.

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?

Despite having no output schema, the description explains what the response contains, describes the season_reward_info object, and addresses edge cases around null fields and sampling. For a one-parameter read-only endpoint, nothing essential is missing.

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

Parameters2/5

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

The only parameter, username, is already clearly defined by the input schema as a required string, so schema coverage is effectively complete. The description only says 'for one account' and never mentions username directly, so it adds minimal extra parameter-level meaning.

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?

The description states a clear verb and resource: returning the current season's glint totals for one account from GET /players/current_rewards. It is specific about the data returned, but does not explicitly contrast itself with siblings like player_last_season_rewards, so it misses the top score.

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?

Usage is implied by 'current season's glint totals' and the endpoint name, which suggests this is for current-season reward data rather than historical. However, the description does not explicitly name alternatives, conditions, or exclusions, leaving some routing inference to the agent.

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