Skip to main content
Glama

tennis-2026

Server Details

Tennis Grand Slams 2026 MCP — Australian Open, Roland Garros, Wimbledon, US Open. Draws + venues.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation4/5

Most tools are clearly distinct: players, tournaments (single and list), venues, and next slam. However, getNextGrandSlam and getTournaments with upcoming filter overlap in providing upcoming slam info, causing slight ambiguity.

Naming Consistency5/5

All tools follow a consistent pattern: prefix 'whensport_tennis_' + verb 'get' + noun in capitalized camelCase (e.g., getNextGrandSlam, getPlayers). No deviations.

Tool Count4/5

Five tools cover the core domain of Grand Slam tennis info (players, tournaments, venues). Slightly thin but well-scoped; not excessive.

Completeness3/5

Covers players, tournament list/details, next slam, and venues. Missing per-player lookup, match/schedule data, and tournament differentiation by year, which are notable gaps for a tennis information server.

Available Tools

5 tools
whensport_tennis_getNextGrandSlamGet the next upcoming tennis Grand SlamA
Read-only
Inspect

Get the next upcoming Grand Slam (Australian Open / French Open / Wimbledon / US Open).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations declare readOnlyHint=true, and the description aligns by stating a read operation. It adds useful context about the specific tournaments and 'next upcoming', though no further behavioral details (e.g., data freshness) are given.

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?

Single sentence, front-loaded, and contains no extraneous words. Perfectly concise.

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 simple tool with no parameters and annotations present, the description is sufficient. It could mention return format details, but the lack of output schema makes the current description largely acceptable.

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?

No parameters exist, and schema coverage is 100%. The description does not need to add parameter info; baseline 4 applies.

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?

Description clearly states the tool retrieves the next upcoming Grand Slam, listing the specific tournaments. This distinguishes it from sibling tools that deal with players, tournaments, and venues.

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

Usage Guidelines4/5

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

The purpose is self-evident, but no explicit guidance on when to use versus alternatives is provided. However, the context makes it clear; still, lacks explicit exclusions or conditional usage.

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

whensport_tennis_getPlayersGet the tennis player rosterA
Read-only
Inspect

Get the tennis player roster covered by whensport (top ATP/WTA players). Singles tennis has no team concept — players compete as individuals — so this tool fills the role that getTeams plays in team sports. Each player record includes nationality, ranking, and Grand Slam wins where known.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already indicate readOnlyHint=true and openWorldHint=false. The description adds value by stating that each record includes nationality, ranking, and Grand Slam wins, giving the agent a better understanding of the output.

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 sentences, minimal and well-structured, front-loaded with the core purpose. No unnecessary information.

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?

Given no parameters, simple retrieval, and provided annotations, the description is complete. It covers what the tool does and what the records contain.

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?

The input schema has zero parameters, so the baseline is 4. The description does not need to add parameter information as there are none.

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 'Get the tennis player roster' with specific scope (top ATP/WTA players) and explains its role as a replacement for getTeams in team sports, making the purpose unambiguous.

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

Usage Guidelines4/5

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

It explains that this tool fills the role of getTeams for singles tennis, providing context for when to use it. However, it does not explicitly mention when not to use it or over sibling tools.

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

whensport_tennis_getTournamentGet a single tennis tournament by slugA
Read-only
Inspect

Get a single tennis tournament by slug — bare names, no year suffix (e.g. 'australian-open', 'roland-garros', 'wimbledon', 'us-open').

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesTournament slug.
Behavior3/5

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

Annotations already indicate read-only. Description adds slug format constraints (no year suffix). Does not explain response shape or error behavior. Moderate additional value.

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?

Single sentence, front-loaded with purpose. Every word adds value—no redundant text. Excellent conciseness.

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

Completeness3/5

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

Adequate for a simple single-param lookup tool with read-only annotation. Lacks output schema, but description doesn't mention return type. Could be improved by stating what fields are returned.

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 describes 'slug' as 'Tournament slug.' Description adds critical formatting detail ('bare names, no year suffix' with examples), which improves correct parameter usage beyond schema alone.

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?

Clearly states the tool retrieves a single tennis tournament by slug, with specific slug format examples. Distinguishes from sibling 'getTournaments' (plural) and provides exact usage pattern.

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?

Implies usage for individual tournament lookup with a valid slug, but does not explicitly contrast with siblings or specify when not to use. Provides slug formatting guidance but lacks alternatives or exclusions.

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

whensport_tennis_getTournamentsGet the tennis tournament listA
Read-only
Inspect

Get the tennis Grand Slam calendar — Australian Open, Roland-Garros, Wimbledon, US Open. Tour-level events (Masters 1000, ATP 500, WTA) are not yet included. Optionally filter to upcoming only.

ParametersJSON Schema
NameRequiredDescriptionDefault
upcomingOnlyNoIf true, return only tournaments that have not yet started.
Behavior4/5

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

Annotations already provide readOnlyHint=true. Description adds transparency by clarifying the scope (Grand Slams only, not Masters/ATP/WTA) and the optional upcoming filter. No contradictions 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.

Conciseness5/5

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

Two sentences with no wasted words. Main purpose is front-loaded, scope limitations are clear, and optional parameter is mentioned concisely.

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 simple list tool with one optional parameter and no output schema, the description adequately covers scope, limitations, and filter behavior. Could specify return format but not necessary for correctness.

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?

Single parameter 'upcomingOnly' is fully described in the schema (100% coverage). Description restates its purpose ('optionally filter to upcoming only') but adds no new meaning beyond the schema. Baseline 3 is appropriate.

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?

Clearly states the tool gets the tennis Grand Slam calendar, lists specific tournaments, and explicitly notes what is not included (Masters 1000, ATP 500, WTA). Distinguishes from sibling tools like getNextGrandSlam by focusing on the full list.

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?

Implied usage: use this for Grand Slam tournaments only, not for other tour-level events. Mentions optional upcoming filter. However, does not explicitly compare to sibling tools (e.g., getNextGrandSlam) or state when to use alternatives, leaving guidance incomplete.

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

whensport_tennis_getVenuesGet the tennis venue listA
Read-only
Inspect

Get the tennis venue list (cities, courts, surfaces).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already indicate read-only operation. Description adds specific output content (cities, courts, surfaces) beyond annotations, but no further behavioral details.

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?

Single sentence, front-loaded with verb and resource, no wasted words.

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?

Adequate for a simple list retrieval with no parameters and read-only annotations. Could mention ordering or full dataset size, but not critical.

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?

No parameters exist, so description cannot add parameter semantics. Baseline of 4 is appropriate per rules.

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?

Clearly states 'Get the tennis venue list' and specifies content includes cities, courts, surfaces. Distinct from sibling tools which focus on grand slams, players, and tournaments.

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?

No explicit guidance on when to use this vs alternatives. Usage is implied by the tool's focus on venues, but lacks when-not or comparison to siblings.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources