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.
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.
Tool Definition Quality
Average 4.2/5 across 5 of 5 tools scored.
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.
All tools follow a consistent pattern: prefix 'whensport_tennis_' + verb 'get' + noun in capitalized camelCase (e.g., getNextGrandSlam, getPlayers). No deviations.
Five tools cover the core domain of Grand Slam tennis info (players, tournaments, venues). Slightly thin but well-scoped; not excessive.
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 toolswhensport_tennis_getNextGrandSlamGet the next upcoming tennis Grand SlamARead-onlyInspect
Get the next upcoming Grand Slam (Australian Open / French Open / Wimbledon / US Open).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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 rosterARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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 slugARead-onlyInspect
Get a single tennis tournament by slug — bare names, no year suffix (e.g. 'australian-open', 'roland-garros', 'wimbledon', 'us-open').
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Tournament slug. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 listARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| upcomingOnly | No | If true, return only tournaments that have not yet started. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 listARead-onlyInspect
Get the tennis venue list (cities, courts, surfaces).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!