Skip to main content
Glama
bryan3eng

Fantasy Football Data MCP Server

by bryan3eng

sportmicro_get_players

Retrieve documented Sportmicro football players with optional filters for fantasy football analysis, lineups, and projections.

Instructions

Get documented Sportmicro football players with optional filters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden, yet it says nothing about pagination, result size, auth requirements, or whether the call is read-only. It also never explains what 'documented' players means or what happens when filters match nothing.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence with no filler or repetition. The only waste is the ambiguous qualifier 'documented', which adds no actionable information.

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

Completeness2/5

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

There is no output schema, no annotations, and no parameter definitions, so the description is the sole source of information — and it omits the return shape, filter mechanism, and result limits. For a data-retrieval tool sitting beside five sibling lookups, this is under-specified.

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?

With zero declared parameters the baseline is 4, but the description promises 'optional filters' while the schema exposes only additionalProperties:true with no named filter fields. That leaves an agent guessing at the accepted filter syntax, which is a real gap rather than neutral silence.

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?

States a specific verb+resource (get ... players) and names the domain entity ('Sportmicro football players'), which is enough to separate it from sportmicro_get_teams and sportmicro_get_matches. It does not, however, state how it differs from the adjacent player-data siblings (get_player_statistics, get_player_projections), and the modifier 'documented' is undefined.

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

Usage Guidelines2/5

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

The description offers no when-to-use guidance, no prerequisites, and does not name any alternative for retrieving player statistics or projections. 'With optional filters' hints that filtering is possible but never says when this tool is preferred over the player-specific siblings.

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