Skip to main content
Glama

cards_get_details

Retrieve Splinterlands card details by type, returning stats, abilities, editions, and distribution while preventing oversized unfiltered responses.

Instructions

List the card-definition rows returned by GET /cards/get_details. The type query is a real upstream filter: type=Summoner returned 107 rows versus 1101 rows from the bare route. The bare upstream response measured about 1.17 MB, so this server refuses an unfiltered call before sending it because the response exceeds this server's 256 KB result bound and would otherwise be reduced to status alone with the data dropped. That refusal is this server's size-based choice from the measured response, not an upstream rule; provide type to make a filtered call. Each returned definition carries id, name, color, type, sub_type, rarity, drop_rate, per-level stats, abilities, editions, total_printed and distribution fields. The measured route carried no BCX, donor or account-attribution field. Successful filtered metadata responses are cached for 24 hours; provenance reports the route and the original fetch time. This tool reports the filtered rows returned and does not add per-instance ownership data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0

TDQS

A4.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 exceeds it. It discloses the server's size-based refusal (1.17 MB upstream vs. 256 KB bound), that this refusal is this server's choice rather than an upstream rule, 24-hour caching, provenance reporting, and the absence of ownership fields. This is rich, honest behavioral context.

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 long but every sentence earns its place: the core action is front-loaded, then each subsequent sentence adds essential behavioral or data details. There is no fluff, repetition, or vague filler.

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 annotations and no output schema, the description is complete enough to call the tool correctly: it explains the required filter, enumerates the returned fields, describes caching and provenance behavior, and warns about the refusal condition. Nothing critical is missing for an agent to make an informed call.

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

Parameters5/5

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

The input schema provides only `type` with `minLength: 1` and no description (0% coverage). The description fully compensates by explaining that `type` is a real upstream filter, illustrating with concrete row counts (107 vs 1101), and making clear that providing `type` is necessary in practice to avoid the size-based refusal.

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 opens with a specific verb and resource: 'List the card-definition rows returned by GET /cards/get_details.' It further distinguishes itself from siblings by explicitly stating it 'does not add per-instance ownership data,' clarifying what this tool is and is not among the many card-related endpoints.

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 gives clear operational guidance: provide `type` to make a filtered call because an unfiltered call is refused due to size. It also implies when not to use it by noting the route carries no BCX, donor, or account-attribution fields and adds no ownership data. However, it never names a specific alternative tool, so it stops short of 5.

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