Skip to main content
Glama
GregBaugues

Token Bowl MCP Server

by GregBaugues

get_league_rosters

Retrieve every team roster in the Token Bowl fantasy league, with records, points, and waiver positions; optionally include full player ID details.

Instructions

Get all team rosters in the Token Bowl league with player assignments.

Args: include_details: If True, include full player ID arrays and all roster details. If False, return only summary info (default). Summary includes: roster_id, owner_id, wins, losses, ties, points_for, points_against, waiver_position.

Returns roster information for each team.

When include_details=False (default):

  • Roster ID and owner user ID

  • Record (wins, losses, ties)

  • Points for and against

  • Waiver position

When include_details=True:

  • All summary info above

  • List of player IDs on the roster (starters and bench)

  • Taxi squad and injured reserve assignments

  • Keeper information if applicable

  • All other roster settings

Returns: List of roster dictionaries, one for each team in the league

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
include_detailsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/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 behavioral burden. It discloses the default include_details=false and exactly what each mode returns, including summary fields, player ID arrays, taxi/IR assignments, and keeper info, which is substantive for a read operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose is front-loaded, but the description repeats return fields across the Args section, two 'When include_details' blocks, and a final Returns line. For a one-parameter read tool, this is unnecessarily long and redundant.

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?

The description covers the tool's scope, default behavior, and both output modes, which is enough to call it correctly. Since an output schema exists, the extensive return-value prose is redundant rather than necessary, and read-only intent is implied instead of stated.

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% and the single boolean parameter include_details has no schema-level description. The tool description fully compensates by defining the true vs. false behavior and enumerating the fields returned in each mode.

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 ('Get') and resource ('all team rosters in the Token Bowl league with player assignments'). The 'all team' scope implicitly differentiates it from the singular sibling get_roster, but no sibling is explicitly named, keeping it from a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to choose this tool over siblings like get_roster, get_league_info, or other league endpoints. It explains the include_details flag thoroughly, but that is parameter behavior, not tool-selection guidance.

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