Skip to main content
Glama
chrischall

maxpreps-mcp

by chrischall

Get a MaxPreps team season

maxpreps_get_team
Read-onlyIdempotent

Retrieve a MaxPreps team season overview with win-loss record, points for/against, conference standing, rankings, and full season history. Confirm records quickly without manually summing schedules.

Instructions

Team overview for one season: sport/level/season identifiers, the win-loss record and points for/against, conference standing, rankings, and the full list of seasons this team has on MaxPreps (roughly 20 years). Use it to confirm a record without summing a schedule. 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.
includeSeasonsNoInclude the list of available seasons

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.1/5.0
Behavior3/5

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

The readOnlyHint, openWorldHint, and idempotentHint annotations already cover the safety profile, and the description repeats 'Read-only' without adding new behavioral details. It does add useful scope context—one season and roughly 20 years of seasons—but no auth, rate-limit, or failure-mode disclosure.

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?

Two sentences, front-loaded with the core output content and a clear use case. Every sentence earns its place without redundancy.

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 compensates by listing the key returned fields: identifiers, record, points, standing, rankings, and season list. Combined with the complete input schema and clear read-only annotations, an agent has enough to select and 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 description coverage is 100%, so the schema already explains team, season, and includeSeasons. The description adds no parameter-level meaning beyond the schema, so the baseline of 3 is appropriate.

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 names the exact verb and resource: a team season overview, including identifiers, record, points for/against, standing, rankings, and the full season list. This clearly differentiates it from siblings like maxpreps_get_schedule, maxpreps_get_standings, and maxpreps_get_rankings.

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?

It gives a concrete intended use: confirm a record without summing a schedule, which routes agents away from maxpreps_get_schedule. It does not explicitly enumerate when to prefer it over roster, rankings, or other sibling tools, but the use case is clear.

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