Skip to main content
Glama

Check a stated figure against DraftCall data

verify_claim
Read-onlyIdempotent

Check a number you are about to state, or one a user has stated, against DraftCall data for one player: points per game, games played, bye week, positional rank, or any season stat such as rushingYards or receptions. Returns whether the figure matches and the actual value when it does not. Use this before quoting a figure from memory, and whenever a user asserts a stat.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYesThe figure being checked.
metricYesWhich figure to check. ppg is points per game in scoring_format; rank is positional rank; the rest are season totals.
playerYesPlayer name, e.g. "Puka Nacua".
scoring_formatNoScoring format. ppr awards 1 point per reception, half_ppr 0.5, standard 0. Defaults to half_ppr, the most common league setting.half_ppr

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe draftcall.io page these figures came from. This is the citation to use.
teamYes
actualYesThe real figure, or null when DraftCall holds none.
metricYes
playerYes
claimedYesThe figure that was submitted for checking.
verdictYesunknown means the claim could be neither confirmed nor corrected, not that it was wrong.
positionYes
refreshed_atYesWhen this dataset was last refreshed, as an ISO 8601 timestamp.
stats_seasonYesThe completed NFL season every figure in this result describes.
scoring_formatNoThe format the figure was checked in, or null for metrics that do not vary by format.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds genuine behavioral context beyond that: it returns a match verdict and the actual value when the figure does not match, and it scopes the check to one player. It does not specify matching tolerance/precision, a minor gap.

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?

Three sentences, each earning its place: purpose+scope, return behavior, and usage rule. The core action is front-loaded and there is no filler or repetition of schema content.

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?

There is an output schema, so return details need not be re-explained, and the annotations carry the safety profile. The description covers scope, metrics, and when to invoke the tool. The one meaningful gap is the lack of precision semantics (does 'matches' mean exact equality or tolerant rounding?), which matters for a verification tool but is not disabling.

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 100%, so the baseline is 3. The description adds meaningful framing beyond the schema by categorizing the metric choices into logical groups (per-game stats, schedule items like bye week, positional rank, and season totals) and by framing 'value' as a figure to verify rather than merely look up. This helps an agent reason about which metric enum value fits the user's request.

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 first sentence states a specific verb ('Check'), a specific resource ('DraftCall data for one player'), and a concrete scope ('points per game, games played, bye week, positional rank, or any season stat'). It also reveals the output behavior (matches vs. actual value), making it unmistakably a verification tool. It is clearly distinct from all siblings such as compare_players, get_rankings, or get_player.

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?

Explicit usage timing is given: 'Use this before quoting a figure from memory, and whenever a user asserts a stat.' This covers both proactive and reactive scenarios. It does not explicitly name alternatives or exclusions, but the tool's verification niche is so distinct from the siblings that the guidance is sufficient.

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

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct query type: single-player lookup, two-player comparison, rankings, scarcity, ADP gaps, schedule, bye conflicts, weekly matchup, search, and claim verification. Even related tools like compare_players and get_player have clearly separated purposes that an agent can reliably distinguish.

Naming Consistency4/5

Seven tools follow the get_ noun pattern, while search_players, compare_players, and verify_claim use verb_noun without get. The convention is still highly readable and predictable, with only minor deviations.

Tool Count5/5

Ten tools is well-scoped for a fantasy football data server. Each tool covers a meaningful slice of draft, in-season, and fact-checking workflows without unnecessary overlap or bloat.

Completeness4/5

The set covers player lookup, head-to-head comparison, rankings, scarcity, schedule, bye conflicts, weekly matchups, and stat verification. A direct standalone ADP lookup and projections are missing, but agents can work around those gaps using the provided tools.