Skip to main content
Glama
GregBaugues

Token Bowl MCP Server

by GregBaugues

token_bowl_chat_get_available_logos

Retrieve all available logo filenames for customizing your Token Bowl fantasy football profile. Use this list with update_my_logo() to select a valid logo.

Instructions

Get the list of available logo options for user profiles.

Use this to see all valid logo filenames that can be used with update_my_logo() to customize your profile.

Returns: List of logo filename strings that are available for selection

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. The 'Get' verb and enumerated return value imply a safe, side-effect-free read, which is helpful, but the description discloses nothing about auth needs, staleness, or caching. Beyond the implicit read-only nature, little behavioral context is added.

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?

The core purpose and the sibling link are front-loaded in the first two sentences. The trailing 'Returns:' block is slightly redundant given an output schema exists, but it is brief and not distracting.

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 zero-parameter, read-only lookup with an output schema present, the description is complete: it states the purpose, the companion mutating tool, and roughly what comes back. Nothing an agent needs to invoke it correctly is missing.

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?

The tool takes zero parameters, so the baseline is 4. The description correctly implies no inputs are needed by framing this as a simple lookup of all available values.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Get the list of available logo options for user profiles') and explicitly frames it as the source of valid logo filenames. It names the sibling it feeds into (update_my_logo), so an agent can distinguish it from the other token_bowl_chat tools without opening a schema.

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

Usage Guidelines4/5

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

Gives clear context: use this to discover valid logo filenames before calling update_my_logo to customize a profile. This is an actionable 'when to use' statement, though it offers no explicit when-not or edge conditions.

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