Skip to main content
Glama

Cito API

tennis_schedule

Read-only

One day of tennis: the day's schedule and/or the matches completed that day, across ATP and WTA.

When to use:

  • "What tennis is on today?"; a specific day's fixtures; results completed on a given date; building a daily digest.

Prefer over: call_api for /tennis/schedule and /tennis/matches/completed (both require ?date=, which this tool supplies and validates); live_matches (in-progress only, right now); upcoming_schedule (a forward window, not a specific day).

Do not use when: matches currently in play → live_matches; a named player's history → player_matches.

Tennis-only. 'date' defaults to today (UTC) and MUST be YYYY-MM-DD. Choose with 'include': both (default), scheduled, or completed. Both halves are fetched in parallel, so either can fail on its own without losing the other.

'limit' bounds EACH half (the completed route ignores ?limit= upstream, so the bound is applied here); scheduledCount/completedCount report how many rows the day held and *Returned how many came back. The two halves overlap: the day's list includes matches already played, so the same matchId can appear in both — see the overlap block before de-duplicating or counting.

Parallel-safe: yes. Upstream cost: 1 or 2.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoDay to fetch, YYYY-MM-DD. Defaults to today (UTC).
gameYesGame title: lol | cs2 | dota2 | cod | ufc | tennis. Example: "cs2".
limitNoRows per half, applied here (default 20, max 50). scheduledCount/completedCount still report the full day.
includeNoboth (default) | scheduled | completed.

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?

Goes well beyond the readOnly/openWorld annotations: discloses that the two halves are fetched in parallel and can fail independently, that 'limit' is enforced locally because the upstream completed route ignores ?limit=, and that the two halves overlap so the same matchId can appear twice. It also states parallel-safety and upstream cost (1 or 2 calls).

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 one-line summary followed by clearly labelled when-to-use / prefer-over / do-not-use sections and then behavioral notes. Dense but every clause carries operational information; slightly long, and the overlap warning could sit closer to the limit discussion.

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?

With an output schema present the description need not explain returns, yet it still documents scheduledCount/completedCount semantics and the duplicate-matchId hazard, plus failure independence and cost. Nothing needed to call 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?

Schema coverage is 100%, so the baseline is 3, but the description adds real meaning: 'date' MUST be YYYY-MM-DD and defaults to today (UTC), 'limit' bounds EACH half while counts still report the full day, and 'include' selects the halves. The only gap is that the required 'game' parameter is never named — 'Tennis-only' implies the value but does not say it.

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+scope: 'One day of tennis: the day's schedule and/or the matches completed that day, across ATP and WTA.' An agent can immediately distinguish this from upcoming_schedule, live_matches, and player_matches without opening any schema.

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 'When to use', 'Prefer over' naming call_api routes and the specific query-param reason (?date=), plus 'Do not use when' routing to live_matches and player_matches. Both the positive and negative conditions are enumerated.

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