Skip to main content
Glama

kicksmash

Create a match

create_match

Create a padel match (4 players) or an americano tournament for a person. Returns the share link for the players and the organizer's private links. Give the person all links; keep personalToken and manageUrl private. Ask before creating; one request, one match.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tzYesIANA time zone the players live in, for example Asia/Singapore or Asia/Bangkok.
costNoWhat each player pays, as free text: 400 THB, €8, split 4 ways.
noteNo
typeNoA match is exactly four players. A tournament is an americano with 4 to 64 players in fours.match
courtNoCourt within the venue, e.g. "3".
titleNo
venueNoClub or court name. Enables the venue board and the booking link.
formatNoTournaments only. americano: partners rotate, everyone plays everyone. mexicano: courts by standings after round 1. king: winners move up a court, losers down.
capacityNoTournaments only, a multiple of 4. Matches are always 4.
levelMaxNo
levelMinNoLevel range 0 to 7 (Playtomic-style). Omit both for any level.
startsAtYesISO 8601 date-time. With an offset or Z it is absolute; without one it is read in tz. Example: 2026-09-11T19:00
whenFullNowaitlist
organizerYes
bookingUrlNoThe club's booking page or confirmation link, shown to players.
venueMapUrlNo
organizerPlaysNoSeat the organizer in the match (default). False when they only organize.
pointsPerMatchNoTournaments only: fixed points per match (16, 21, 24, 32). Omit for free scoring; mexicano defaults to 24.
listOnVenueBoardNoShow the match on the public venue board (/v/{venue-slug}). Off by default.

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Beyond the annotations, the description discloses meaningful behavior: it returns a share link plus private organizer links, and it warns to keep personalToken and manageUrl private. The consent requirement is also important because this is a creating action. It could add more about side-effect scope, but it already goes beyond the structured hints.

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?

Two sentences carry the purpose, output behavior, privacy instructions, and the one-request rule. Every clause earns its place, and critical guidance is front-loaded.

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 19-parameter creator with no output schema, the description adequately states what is returned and what safety behavior is expected. Optional settings are left to the input schema, which is acceptable, though a bit more detail about the created object's lifecycle would improve completeness.

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 input schema already documents many parameters, and the description adds only a little semantic value, such as 'match means 4 players' and 'tournament means americano.' With 68% schema coverage, some parameters like note, title, venueMapUrl, and levelMax remain undocumented in both the schema and description, so the description does not fully compensate.

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 uses a specific verb ('Create') and names the two resource types: a padel match (4 players) or an americano tournament. It also states the return artifact, clearly distinguishing this from sibling read/join tools like get_match and join_match.

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?

It provides useful guardrails ('Ask before creating; one request, one match') and clarifies the creation context. However, it never explicitly contrasts this tool with alternatives like join_match or generate_schedule, so the agent must largely infer when to choose this over siblings.

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.