Skip to main content
Glama

market_rental_history

Retrieves a player's card rental history by username or player name, supporting pagination controls such as limit, offset, take, and skip. Returns up to 100 rows per request.

Instructions

Read card rental history with an explicit player or username. Both account aliases returned the same two rows; limit and take bounded leading rows. offset=1 and skip=1 returned empty even though limit=2 without offset returned two rows. An empty offset result does not prove the end of history. Makes one logical GET request and does not auto-fetch continuation pages. Required inputs reflect tool policy as well as measured upstream requirements. Other declared filters are forwarded as supplied; their effectiveness is not implied by the schema. Array responses are locally limited to 100 rows and 256 KiB, with truncation reported in text and metadata. Oversized records are refused without partial fields.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
skipNo
takeNo
limitNo
offsetNo
playerNo
usernameNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0

TDQS

A4.1/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden, and it is exceptionally transparent: it discloses pagination anomalies, one-request behavior, no continuation-page fetching, local array limits, truncation reporting, refusal of oversized records, and the caveat that filters are forwarded without guaranteed effectiveness. This goes well beyond what is typical.

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 description is dense but each sentence adds distinct value, and the most important purpose and scope statement is front-loaded. It could be better structured with bullet-like separation, but there is no filler or redundant restatement of the tool name.

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

Completeness3/5

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

For a six-parameter tool with no annotations and no output schema, the description covers operational quirks impressively. However, it does not describe the returned row fields or explicitly state in normative terms that a player or username is required, leaving some ambiguity for an agent trying to form a correct first call.

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

Parameters4/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, and it does: it explains player/username as aliases, limit/take as leading-row bounds, and the surprising offset=1/skip=1 empty-result behavior. It covers all six parameters by group, but leaves exact value formats and the normative requirement to supply a player/username somewhat implicit.

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 opening sentence 'Read card rental history with an explicit player or username' gives a specific verb, resource, and scope, so an agent can tell this is a per-account rental-history lookup. It does not explicitly name or contrast sibling tools like market_history or rentals_by_player, so it stops short of full sibling differentiation.

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 a clear precondition ('with an explicit player or username') and useful invocation guidance about pagination, offset/skip behavior, and absence of auto-paging. It does not explicitly state when to prefer this tool over alternatives or list exclusion cases, but the context is much clearer than average.

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