Skip to main content
Glama
petegibbins

Royals26

by petegibbins

league_stats

Retrieve league-wide season leaderboards for batting, pitching, or fielding from the federation's stats endpoint to compare player performance across the league.

Instructions

League-wide season leaderboard from the federation's stats endpoint. section is batting|pitching|fielding.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sectionNobatting

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It identifies the endpoint and scope but does not state how fresh or cached the data is, what the response format looks like, whether authentication is needed, or how results are ordered and paginated.

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 two concise sentences with no filler: the main purpose is stated first, and the parameter definition is compactly delivered in the second. Every word adds necessary information.

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 one-parameter stats endpoint, this is minimally viable: it names the resource, source, and section choices. However, without annotations or an output schema, it leaves out response format, ordering behavior, and usage caveats that an agent would need for robust invocation.

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?

With 0% schema description coverage, the description compensates well by defining the only parameter's allowed values ('batting|pitching|fielding'), which the schema does not provide. It fully enumerates the choices, though it leaves the precise semantics of each section 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 description states a clear resource ('league-wide season leaderboard') and source ('federation's stats endpoint'), with 'section' defining the sub-category. It uses 'League-wide' to signal scope, which helps distinguish it from team-focused siblings, though it does not explicitly name or contrast alternatives like team_batting or team_pitching.

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 'League-wide' qualifier implies this tool is for league-level stats rather than team-specific or projection tools, giving some contextual guidance. However, it never explicitly says when to use this tool over sibling alternatives or provides exclusions, leaving the agent to infer usage.

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