Skip to main content
Glama

kicksmash

Generate an americano schedule

generate_schedule
Read-onlyIdempotent

Rounds of rotating-partner doubles for 4 to 64 players. Exact when the field is in fours (every pair partners once in players−1 rounds), fair sit-outs otherwise. Nothing is stored.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seedNoSame seed, same schedule.
namesNo
courtsNoDefaults to floor(players / 4).
formatNoamericano
roundsNoDefaults to players − 1 when the field is in fours (every pair partners once), else players.
playersNoNumber of players; ignored when names are given.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the description does not need to restate those. It adds valuable behavioral context by stating 'Nothing is stored' and by specifying exactness conditions for fields in fours versus 'fair sit-outs otherwise.'

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

Conciseness5/5

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

Three short sentences deliver the core purpose, behavioral guarantees, and persistence semantics with no filler. The most important information is front-loaded before the fairness details.

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 stateless, read-only generator with optional parameters, the description covers purpose, player range, schedule properties, and non-persistence. It does not explicitly describe the output format, but the phrase 'rounds of rotating-partner doubles' strongly implies the return value, and the schema covers the remaining parameter details.

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?

The schema already documents seed, courts, rounds, and players, while the description adds context about 'players−1 rounds' and fairness behavior linked to player count. However, it does not clarify the meaning of names, format, or courts beyond what the schema provides, and schema coverage is only 67%.

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 title supplies the verb 'Generate' and the description names the resource: 'rounds of rotating-partner doubles for 4 to 64 players.' This clearly identifies what the tool produces and is not confusable with the listed siblings, none of which involve schedule generation.

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?

The description explains what the tool does but gives no guidance on when to choose it over alternatives, nor any explicit context such as prerequisites or exclusions. The only usage signal is the implicit one from the title, which is weak.

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
Disambiguation5/5

Each tool targets a clearly distinct resource or action: about/API key, match creation, club searching, match searching, schedule generation, group retrieval, match retrieval, and joining. Even similar tools like find_matches and get_match are separated by clear inputs and purposes.

Naming Consistency4/5

Nearly all tools follow the verb_noun pattern: create_match, find_clubs, find_matches, generate_schedule, get_group, get_match, join_match, create_api_key. The only deviation is about_kicksmash, which uses a preposition-style prefix instead of a verb.

Tool Count5/5

Nine tools is well-scoped for a padel-focused assistant. Each tool serves a distinct user need without redundancy or bloat.

Completeness4/5

The core workflows—discovering clubs/matches, creating matches, joining matches, retrieving match/group info, and generating schedules—are well covered. Update/cancel/leave operations are absent, but the organizer manageUrl suggests those happen outside the MCP surface, so this is a minor gap rather than a dead end.