Skip to main content
Glama

0to100

Get player stats

get_player_stats
Read-onlyIdempotent

Season stats for one player on a team (points/assists/rebounds for NBA, passing/rushing/etc for NFL).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamYes
playerYesPlayer name, e.g. 'Jalen Brunson' or 'Mahomes'

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds that results are season aggregates with per-league stat categories, which is useful but overlaps with purpose; it does not disclose side effects, auth requirements, or edge-case behavior. No contradiction with annotations.

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?

Single sentence, front-loaded with the core scope, followed by compact parenthetical examples. Every word contributes; no filler or repetition.

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

Completeness4/5

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

For a simple, read-only, two-parameter lookup, the description plus annotations cover purpose and safety adequately. The only notable gap is an explicit team-format example; output details are lightly sketched through the stat categories, which is acceptable given no output schema and low complexity.

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 50%: player has an example, but team has none. The description clarifies that stats are for one player on a team and lists sport-specific stat types, but it does not specify what team values look like (e.g., city vs franchise name) or otherwise compensate for the bare team parameter.

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?

States a specific resource and scope: season stats for one player on a team, with sport-specific stat categories. This clearly differentiates it from sibling tools like get_roster (players) and get_team_schedule (games), and the title verb 'get' is supported by the descriptive noun phrase.

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 description implies use for player stat lookups and indicates season-level data, but it never says when not to use it or names an alternative such as get_roster or list_teams. No explicit routing or exclusions are provided.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct resource: injuries, odds, player stats, roster, schedule, and the universe of teams. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tools use a clear verb_noun pattern: get_* for specific resources and list_teams for the full collection. This is consistent and predictable.

Tool Count5/5

Six tools is well-scoped for a read-only sports data server covering NFL and NBA information. Each tool covers a meaningful slice of the domain without bloat.

Completeness4/5

The surface covers the main pre-game and season data needs: teams, rosters, schedule, stats, injuries, and odds. Only a minor gap exists for something like game results or standings, which is not central to the apparent betting/team-info focus.

Resources