mcp-ff2026
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FF2026_SLEEPER_USER_ID | Yes | A Sleeper username or user ID. | |
| FF2026_FANTASYPROS_API_KEY | Yes | A FantasyPros API key for rankings and projections. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| initialize_seasonA | Discover the configured Sleeper user's league, roster, and draft for a season. |
| get_season_contextB | Get the persisted Sleeper user, league, roster, and draft defaults. |
| sync_leagueA | Synchronize broad Sleeper league state for setup and season-long operation. |
| sync_draftA | Refresh only live draft details, picks, and traded-pick ownership. |
| sync_league_historyC | Backfill every week while following Sleeper's previous-league renewal chain. |
| get_league_overviewC | Get the current local league format, rosters, managers, and sync provenance. |
| get_sync_statusB | Inspect recent season/draft synchronizations and retained projection failures. |
| get_draft_stateA | Get draft settings, picks, next-pick context, and an optional roster's local queue. |
| list_available_playersA | List active Sleeper players absent from current rosters and this league's draft picks. This is an availability query, not a ranking or recommendation. Sleeper's search rank only provides stable result ordering until independent valuations exist. |
| set_draft_queue_entryA | Conflict-safely insert or update one player in the local draft queue. |
| remove_draft_queue_entryB | Conflict-safely remove one player from an agent-managed local draft queue. |
| sync_fantasyprosC | Ingest licensed FantasyPros identities, ECR/ADP, projections, news, and injuries. |
| sync_sleeper_marketC | Ingest documented Sleeper global add/drop trends as a market signal. |
| refresh_decision_inputsD | Refresh the appropriate Sleeper ledger, market signals, and licensed evidence. |
| import_provider_snapshotC | Import one licensed point-in-time provider export into the same raw-first pipeline. |
| get_provider_statusC | Inspect provider synchronizations and unresolved player identities. |
| map_player_identityB | Manually resolve an ambiguous provider ID to a Sleeper player with audit metadata. |
| get_player_contextA | Return resolved projections, market inputs, injuries, and news for a player. |
| compare_playersB | Compare same-horizon league-scoring values without hiding their components. |
| get_roster_stateC | Return value-aware roster depth, positional fragility, and current injury risk. |
| get_value_changesC | Screen for projection, market, trend, or contextual changes since a timestamp. |
| recommend_draft_pickC | Rank available draft choices and estimate survival to the roster's next owned pick. |
| optimize_lineupB | Optimize an eligible weekly lineup for median, floor, and upside objectives. |
| analyze_waiver_windowB | Evaluate add/drop pairs, FAAB ranges, and expected competition for current waivers. |
| get_manager_profileB | Return descriptive, uncertainty-labeled manager behavior from retained history. |
| find_trade_opportunitiesA | Find plausible one-for-one roster-fit trades without inventing acceptance odds. |
| recommend_season_strategyC | Recommend risk posture from record, points rank, and current weekly roster strength. |
| simulate_seasonC | Estimate explicitly experimental playoff and championship probabilities. |
| get_decision_historyC | Return immutable recommendation inputs, alternatives, actions, and outcomes. |
| record_decision_actionC | Attach the action actually taken to a previously persisted recommendation. |
| record_decision_outcomeA | Attach an observed outcome to a prior recommendation without rewriting its forecast. |
| get_calibration_reportB | Report Brier/absolute-error metrics from prospectively recorded outcomes. |
| record_trade_offerC | Record proposed/rejected/countered/accepted trade labels for future calibration. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 33 tools
Most tools target distinct resources and actions, but the multiple sync_* variants (sync_league, sync_draft, sync_league_history, sync_fantasypros, sync_sleeper_market) and refresh_decision_inputs create potential confusion about which synchronization to call for a given task. Descriptions mitigate this, but boundaries are not always obvious.
All tool names use a consistent snake_case verb_noun pattern (e.g., get_draft_state, sync_league, recommend_draft_pick), with no convention mixing. The pattern is predictable and helps agents infer functionality.
With 33 tools, the server exceeds the 25-tool threshold for a typical MCP server. While the fantasy football domain is broad, many sync and decision-recording tools could be consolidated, making the surface unnecessarily large.
The tool set covers the full fantasy football decision lifecycle, from data ingestion and state synchronization to analysis, recommendations, and outcome recording. Minor gaps exist such as no transaction execution or lineup setting, but these appear deliberately excluded from the server's decision-support scope.