Skip to main content
Glama
Tarune28

ESPN Fantasy Football MCP Server

by Tarune28

get_trade_candidates

Find potential trade targets for a fantasy team: identify its weakest starting position, scan other rosters for bench or surplus players there, and return candidates with their owners.

Instructions

Identify potential trade targets for a team.

Args: team_name: Team name or owner name (fuzzy).

Finds the team's weakest starting position group, then scans every other team for players at that position who sit on the bench or represent surplus depth. Returns candidates grouped by position need, with the owning team so the user knows whom to approach.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
team_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.8/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden, and it does substantial work: it discloses the internal algorithm (weakest starting position group, other teams' bench/surplus depth) and what the response groups by, including that the owning team is included so the user knows whom to approach. It omits nothing critical for a read-only lookup tool.

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?

One-line purpose up front, followed by the Args detail and then the mechanism. Efficient and front-loaded. The Args block slightly restates the schema, but it is short and matches convention.

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 formatting needn't be explained, yet the description still sketches the grouping structure. Combined with the fuzzy-parameter note and the algorithmic disclosure, an agent has enough to call this correctly and interpret the result.

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 coverage is 0% and the single parameter's schema only says type string. The description compensates by clarifying that team_name accepts a team name OR an owner name and that matching is fuzzy — meaningful semantics the schema does not carry.

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 and resource ('Identify potential trade targets for a team') and then explains the mechanism: find weakest starting position group, scan other teams for bench/surplus players. That is far more than a name restatement. It doesn't explicitly distinguish itself from the similarly-named sibling get_trade_activity, but the purpose is 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 makes the use case implied — you call this when you want trade targets — but never states when to prefer it over siblings like get_trade_activity (past trades), get_free_agents, or get_team_analysis. There is no explicit when/when-not guidance.

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