Skip to main content
Glama

Cito API

tournaments

Read-only

Tennis tournament catalog: find tournaments by year, tour, level, surface, or country.

When to use:

  • "Which ATP 500s are on clay in 2026?"; "list the WTA 1000 events"; "what Grand Slams are in 2026?"; finding a tournament id before calling event_card.

Prefer over: event_card when you do NOT already have a tournament id (event_card needs one); call_api for /tennis/tournaments.

Do not use when: the draw bracket or a specific edition → event_card with the id this returns; the season calendar by month → event_card.

Tennis-only. Levels accept names (Grand Slam, WTA 1000, ATP 500, Challenger, ITF World Tennis Tour, Davis Cup, ...) or raw tier codes (G, M, A, C, D). A level name that starts with ATP or WTA also fixes the tour (and conflicts with a contradicting tour= argument are rejected), so "WTA 1000" cannot return ATP Masters events even though the upstream filter is not tour-aware. Note the source does not separate ATP 500 from ATP 250 — both are ATP Tour.

Parallel-safe: yes. Upstream cost: 1.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qNoCase-insensitive name search, e.g. "open".
gameYesGame title: lol | cs2 | dota2 | cod | ufc | tennis. Example: "cs2".
pageNoPage number (1-indexed).
tourNoATP or WTA.
yearNoEdition year, e.g. 2026. Omit for all years.
levelNoFilter by level. Names: Grand Slam, Masters 1000, ATP Tour, ATP 500, ATP 250, WTA 1000, ... or codes G|M|A|C|D.
limitNoMax items to return (default 20, max 50). Example: 20.
surfaceNoHard, Clay, Grass, or Carpet.
countryCodeNo3-letter IOC country code, e.g. FRA.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYestrue if the tool succeeded
dataNoResult payload when ok is true; null on error
metaYes
errorNo
partialNo
paginationNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.8/5.0
Behavior5/5

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

Beyond the read-only/non-destructive/open-world annotations, the description discloses non-obvious behaviors: a level name starting with ATP/WTA fixes the tour and contradicting tour= arguments are rejected, and the source cannot separate ATP 500 from ATP 250. It also reports parallel-safety and upstream cost, which no annotation conveys.

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?

Front-loaded with the one-line purpose followed by clearly labeled When-to-use, Prefer-over, and Do-not-use sections, so it is scannable. Slightly longer than necessary, with the level examples repeated ("WTA 1000" appears in both the usage and semantics blocks).

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Output schema already documents the return shape and annotations cover the safety profile, so the description is free to focus on selection guidance, which it does thoroughly, including domain caveats an agent could not infer from the schema alone.

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?

Schema coverage is 100%, so the structured fields are already documented and baseline is 3. The description earns above baseline by explaining semantics the schema does not: that level accepts names or raw tier codes (G/M/A/C/D), and the level/tour interaction rule that would otherwise be invisible.

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+resource ("Tennis tournament catalog: find tournaments") plus the exact filterable dimensions, and explicitly distinguishes itself from siblings event_card and call_api. An agent can tell instantly what this returns versus the bracket/edition tool.

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?

Gives concrete when-to-use example queries, names the alternatives (event_card, call_api) with the condition that selects them ("when you do NOT already have a tournament id"), and adds an explicit do-not-use section redirecting bracket and calendar needs to event_card. This is the full when/when-not/alternative triad.

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.

Resources