Skip to main content
Glama
heyitaki

espn-fantasy-football-mcp

by heyitaki

Free agents and waivers

get_free_agents
Read-only

Find available NFL free agents to add or claim. Filter by position and sort by ownership or projected points to identify waiver wire targets.

Instructions

Find available players to add or claim, with optional position filters and ownership or projection sorting. Player ids are ESPN ids, including negative D/ST ids.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
weekNoNFL scoring week, defaults to the league's current scoringPeriodId.
limitNo
sortByNopercentOwned
positionsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
weekYes
playersYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already indicate this is read-only and open-world. The description adds useful behavioral context beyond annotations, especially that player ids are ESPN ids and that D/ST ids can be negative, which is a non-obvious gotcha. It does not contradict the 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?

The description is two tight sentences with no filler. The core purpose is front-loaded, and the critical ID note is included without bloating the text.

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 read-only listing tool with an output schema, the description covers the main behavior, filtering/sorting options, and an important ID quirk. The main gap is the lack of explicit guidance on how this tool relates to search_players, but the description is otherwise sufficient for correct invocation.

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 only 25%, so the description must compensate. It adds meaning for positions and sortBy ('optional position filters and ownership or projection sorting'), and week has a schema description, but limit receives no explanation in either place and the percentChange sort option is only implicitly covered by 'ownership'.

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?

The description states a clear action and resource: finding available players to add or claim, with optional filters and sorting. It doesn't explicitly name sibling tools like search_players, so it doesn't fully differentiate itself, but the resource and intent are unambiguous.

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 when to use the tool: when looking for players to add or claim. However, it gives no explicit guidance on when to choose this over search_players or other alternatives, and there are no exclusions or conditions stated.

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