Skip to main content
Glama
Tarune28

ESPN Fantasy Football MCP Server

by Tarune28

get_player_schedule

Retrieve an ESPN Fantasy Football player's NFL bye week and remaining matchups to spot bye-week conflicts and assess upcoming tough or easy stretches.

Instructions

Show a player's NFL bye week and remaining NFL matchups.

Args: player_name: Full or partial player name.

Useful for spotting bye-week conflicts and upcoming tough/easy stretches.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
player_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It discloses that the tool is forward-looking ('remaining' matchups) and what it returns, but says nothing about permissions, freshness, or season scoping. Some value added, clear gaps remain.

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?

Short and front-loaded with the core purpose in the first sentence. The Args block slightly duplicates schema information but remains terse.

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?

An output schema exists, so return values need not be explained, and the single parameter is documented including partial-match behavior. For a read-only lookup, this is nearly complete; only data-freshness context is absent.

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 0%, so the description must compensate. It does, stating 'Full or partial player name,' which documents partial-match behavior not conveyed by the bare string schema.

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 verb and resource: show a player's NFL bye week and remaining matchups. The scope is player-level, which cleanly separates it from the sibling get_team_schedule.

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 line 'Useful for spotting bye-week conflicts and upcoming tough/easy stretches' implies when to reach for it, but no explicit alternatives or when-not conditions are given. Adequate but leaves routing to inference against 19 siblings.

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