Skip to main content
Glama
chrischall

maxpreps-mcp

by chrischall

Get conference standings

maxpreps_get_standings
Read-onlyIdempotent

Retrieve the full conference standings table for a high school team, including all teams' records and placement, plus season stat leaders. Use to view conference context beyond a single team's record.

Instructions

The standings table a team sits in — every team in the conference with its conference and overall records and placement, not just this team's own line (maxpreps_get_team gives that). Also returns the ranked statistical leaders MaxPreps highlights for the season. Read-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamYesTeam site path or URL, e.g. nc/charlotte/myers-park-mustangs/football
seasonNoSeason label, e.g. 25-26. Omit for the current season.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv0.2.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already mark the tool read-only and idempotent, and the description adds useful context about the scope and content of the response: every conference team, records, placement, and highlighted statistical leaders. It does not discuss failure modes or authentication, but these are not significant concerns for a read-only lookup.

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 compact and front-loaded: it leads with the core output, clarifies scope with a sibling contrast, and adds the secondary stat-leaders behavior. No sentence is wasted.

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?

With no output schema, the description does the necessary work of explaining return content: full standings, records, placement, and stat leaders. The schema covers parameter details, and annotations cover safety, so the description is complete enough for an agent to call this tool correctly.

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 coverage is 100%, and both parameters (team, season) are fully documented with formats and examples. The description adds no new parameter-level detail beyond referring to 'a team,' so the baseline score of 3 applies.

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 states exactly what the tool returns: the full conference standings table for a team's conference, including records and placement, plus the statistical leaders MaxPreps highlights. It also distinguishes itself from maxpreps_get_team, making its purpose unmistakable.

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

Usage Guidelines5/5

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

It explicitly tells the agent when to use this tool versus maxpreps_get_team: use it for the whole standings table, not just the team's own line. This is a clear routing instruction to the most relevant sibling.

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