Skip to main content
Glama

turnale

Suggest a format

suggest_format
Read-only

Recommend tournament formats in plain language, with the round/time math done by the engine. Call this FIRST when the organiser has not named a format, names one hesitantly, or comes from a background where americano/mexicano need explaining — then relay the menu text as-is instead of asking an open 'which format?' question. SINGLES OR DOUBLES IS A PREREQUISITE: omit discipline and this returns the question to put to the organiser rather than a menu, because it decides which formats exist at all (americano and mexicano are doubles). Never infer it from the sport. Needs no key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vibeNoSocial: everyone mixes and plays a lot. Competitive: a bracket and a winner.
courtsNoDefault 2
disciplineNoAsk the organiser before offering formats; never infer it from the sport. 'unknown' = you asked and they don't mind, which shows both kinds. OMIT to get the question itself back.
match_minutesNo
total_minutesNoThe time budget, e.g. 120 for a two-hour evening
fixed_partnersNoDoubles only: do pairs stay together all evening?
players_estimateYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
menuYesReady-to-show menu of the options — relay it to the organiser as-is. Do not compress it to bare format names.
noteYes
glossaryYes
recommendationsYes

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already mark this as read-only and non-destructive, so the bar is lower. The description adds valuable behavioral context: it explains that round/time math is done by the engine, that omitting `discipline` returns a question instead of a menu, that americano and mexicano are doubles, and that no key is needed. No contradiction with annotations.

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 description is somewhat long but each sentence carries distinct weight: purpose, when to use, the discipline prerequisite, and a note about key requirements. It is front-loaded and structured with paragraph breaks for emphasis. Slightly dense but not wasteful.

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 core selection and invocation concerns: when to use, the key prerequisite, and expected output. Since an output schema exists, return values need no further explanation. The tool is sufficiently complete for an agent to choose and call it correctly, though the 'Needs no key' phrase is a bit ambiguous.

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

Parameters3/5

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

Schema coverage is 71%, so the schema does most of the work. The description adds important nuance about `discipline` (omitting it changes the response, it must never be inferred), but this is largely repeated from the schema's own description. Other parameters like `players_estimate` and `match_minutes` are not elaborated, so the description only partially compensates.

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?

The description clearly states the tool's function: 'Recommend tournament formats in plain language, with the round/time math done by the engine.' It also distinguishes itself from sibling tools by emphasizing it should be called FIRST for format selection, and explicitly describes the output as a `menu` to relay. The verb+resource structure is specific and unique.

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

Usage Guidelines5/5

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

Explicit conditions are given: 'Call this FIRST when the organiser has not named a format, names one hesitantly, or comes from a background where americano/mexicano need explaining.' It also instructs to relay the menu text instead of asking open questions, clarifies the discipline prerequisite, and says 'Never infer it from the sport.' This is strong, actionable guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation3/5

Several tools serve overlapping purposes: get_pdf and get_pdf_link both return PDF artifacts, get_schedule and list_matches both provide match scheduling info, and get_results vs. get_standings can be confused for finished tournaments. However, the descriptions clarify the distinctions (embedded vs. link, upcoming vs. all matches, final vs. current standings), and roster-management tools are clearly separated by action.

Naming Consistency5/5

All 30 tools consistently use lowercase snake_case with a verb_noun pattern (e.g., create_tournament, record_results, withdraw_player). The only slight variation is the mix of get_* and list_* for read operations, but that's a common and predictable convention. There are no camelCase or inconsistent verb styles.

Tool Count2/5

With 30 tools, the server exceeds the 'too many' threshold of 25. While the domain is complex, this count is heavy and may overwhelm agents, especially since several tools could be consolidated (e.g., get_pdf/get_pdf_link, get_schedule/list_matches). A more streamlined set around 20 tools would be more appropriate.

Completeness5/5

The tool set provides comprehensive lifecycle coverage for tournament management: create/delete/end tournaments, manage players (add, remove, replace, withdraw, promote, update), generate draws, record results, handle doubles pairs, reschedule, retrieve standings/schedule/results, export/PDF, audit log, undo changes, and feedback. No major gaps are apparent for the stated purpose.