Skip to main content
Glama
GregBaugues

Token Bowl MCP Server

by GregBaugues

get_waiver_analysis

Analyze fantasy football waiver wire options by combining recently dropped players, trending adds, and roster needs to recommend pickups.

Instructions

Get comprehensive waiver wire analysis with minimal context usage.

A consolidated tool that efficiently combines waiver wire data with recent transactions to provide focused recommendations.

Args: position: Filter by position. Valid values: QB, RB, WR, TE, DEF, K. Case-insensitive (will be uppercased). None returns all positions. days_back: Number of days to look back for recently dropped players (default: 7). Can be integer or string. Valid range: 1-30. limit: Maximum number of players to return per category (default: 20). Can be integer or string. Maximum: 50.

Returns comprehensive analysis including:

  • recently_dropped: Players dropped in our league (last N days) who are valuable

  • trending_available: Top trending adds who are actually available

  • waiver_priority: Current priority position (if available)

  • position_needs: Analysis of roster needs by position

  • All player data in minimal format to reduce context

Returns: Dict with waiver analysis and recommendations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
positionNo
days_backNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations exist, so the description carries the full burden. It usefully discloses the 'minimal context usage' design goal and enumerates the returned analysis categories, which is real behavioral context, but it never states the read-only nature, auth/permission needs, or rate-limit behavior for a multi-source aggregation call.

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?

Front-loaded with purpose, then Args and Returns. Mostly efficient, but the Returns section restates fields that the output schema already defines, and the Args block duplicates schema-provided defaults — some redundancy against a low information cost.

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?

Parameters are thoroughly documented and the analysis categories are enumerated; since an output schema exists, explaining return values is not strictly required. The remaining gap is guidance on choosing this aggregate over the narrower sibling tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, yet the description fully compensates: position documents valid enum values and case-insensitivity, days_back gives default and 1-30 range, and limit gives default and max of 50. This adds meaning well beyond the bare schema, which carries no descriptions.

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 ('waiver wire analysis') and clarifies it is a consolidated aggregate combining waiver data with recent transactions. It does not differentiate from close siblings like get_waiver_wire_players, get_trending_context, or evaluate_waiver_priority_cost, so an agent can't fully tell it apart from those without reading schemas.

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?

Calling itself a 'consolidated tool' that 'efficiently combines' data implies it is a convenience aggregate versus the narrower siblings, but there is no explicit when-to-use or when-not-to-use statement and no named alternative. Usage is inferable but not stated.

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