nyc-tennis-courts
Server Details
Every place to play tennis in New York City: which you walk on to, which take a booking.
- 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.3/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: find_courts searches and filters, get_court retrieves details for a specific venue, and how_to_play_tennis_in_nyc provides essential context and guidance. No overlap or ambiguity exists.
The first two tools use a consistent verb_noun pattern (find_courts, get_court), but the third (how_to_play_tennis_in_nyc) breaks this convention with a descriptive phrase. This is a minor deviation that doesn't impede readability.
With only 3 tools, the set is tightly scoped to the server's purpose of exploring NYC tennis court information. Each tool serves a necessary, non-redundant function, and the count feels appropriately lean.
The domain is a tennis court directory, and the surface covers searching, getting detailed information, and providing domain-specific context. There are no obvious dead ends or missing operations required for this purpose.
Available Tools
3 toolsfind_courtsFind places to play tennis in New York CityAInspect
Search the directory of places to play tennis in New York City. Filter by borough, by how you get on a court (walk_on, reservation, private_club), by indoor play, by floodlights, or by minimum court count. Returns each venue with its page URL.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum venues to return. Default 25, maximum 120. | |
| access | No | walk_on: public park, no booking. reservation: public park court bookable through NYC Parks. private_club: runs its own booking. | |
| borough | No | Borough name, e.g. Manhattan, Brooklyn, Queens, Bronx, Staten Island. | |
| minCourts | No | Minimum number of courts at the venue. | |
| indoorOnly | No | Only venues where a source confirms indoor play. Venues never researched are excluded rather than assumed outdoor. | |
| lightedOnly | No | Only venues with at least one floodlit court. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full disclosure burden. It does state that the tool searches, filters, and returns venue URLs, and the schema adds useful nuance like 'Venues never researched are excluded.' However, it does not address behaviors such as ordering, empty results, or how filters combine.
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 concise, well-structured sentences cover the action, resource, filter options, and return value without filler. It is front-loaded with the main purpose and each clause adds value.
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 read-only search tool with 100% schema coverage and a clear output statement, the description is sufficiently complete. It could name the pagination limit or mention that limit is a parameter, but the schema already covers that and the description says it returns each venue with a URL.
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 description coverage is 100%, so the input parameters are already well-documented. The description adds a compact overview of the filter categories, but it does not deepen understanding of parameter formats, defaults, or edge cases beyond what the schema already provides.
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 opens with a specific verb and resource: 'Search the directory of places to play tennis in New York City.' It names the full set of filtering dimensions and states the output type, which clearly distinguishes it from sibling tools like get_court and how_to_play_tennis_in_nyc.
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 description makes clear this is a directory-search/filter tool and that it returns venue URLs, which signals its role versus fetching one specific court or reading a how-to guide. It does not explicitly mention when not to use it or name alternative tools, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_courtFull detail for one place to playAInspect
Everything the directory holds about one venue: courts, surfaces, floodlights, indoor season, accessibility, reservation programmes, coordinates, and the source each fact was read from. Takes the slug returned by find_courts.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Venue slug, e.g. central-park. From find_courts. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden. It discloses the comprehensive data returned (courts, surfaces, floodlights, accessibility, etc.) and adds provenance ('source each fact was read from'), which is valuable context. It implies a read operation without side effects, though it doesn't explicitly state that it is non-destructive, but the description is sufficiently transparent about its scope.
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?
The description is two sentences, front-loaded with the core purpose ('Everything the directory holds about one venue') and then lists specific details. Every sentence earns its place—no fluff, no repetition. It's both concise and informative.
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 tool with a single parameter, no output schema, and no annotations, the description is fully self-contained: it explains what the input is, where it comes from, and what the output includes. The enumerated data fields effectively substitute for an output schema, and the description is complete given the tool's simplicity.
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 schema already provides 100% coverage with a clear description ('Venue slug, e.g. central-park. From find_courts.'). The description restates the origin ('Takes the slug returned by find_courts') but adds no new semantic meaning beyond reinforcing the source. According to the baseline for high schema coverage, a score of 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?
The description clearly states 'Everything the directory holds about one venue' and enumerates specific data fields (courts, surfaces, floodlights, etc.). It distinguishes from sibling find_courts, which presumably returns a list of venues, by focusing on full detail for a single venue.
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 description explicitly instructs that it 'Takes the slug returned by find_courts', establishing a clear usage pattern. It doesn't explicitly state when not to use it or name alternatives, but the dependency on find_courts makes the workflow explicit, so the guidance is strong though not exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
how_to_play_tennis_in_nycHow playing tennis in New York City actually worksAInspect
Start here before answering any question about playing tennis in New York City. Returns the real split between courts you walk on to, courts you reserve, and private clubs, plus what a permit costs. Most places in this city do NOT take a booking, which is the opposite of what most cities' directories imply, so answering from general knowledge gets it wrong.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully carries the burden of disclosing behavior. It explains the tool corrects a common misconception and warns against relying on general knowledge, setting clear expectations for the kind of information it returns.
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?
The description is three sentences long, each with a distinct purpose: instructing the user, detailing the return value, and explaining the necessity. It is front-loaded with the most important imperative ('Start here') and contains no unnecessary verbiage.
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 parameterless tool with no output schema, the description fully sets expectations about what the tool does and why it is needed. It covers the return content and the reasoning behind the tool's existence, making it complete for an agent to decide to invoke it.
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 tool takes no parameters (schema is an empty object), so per the rubric the baseline is 4. The description cannot add parameter-level detail, but it compensates by describing the conceptual scope of the tool.
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 its purpose: it is a 'Start here' guide for answering any question about playing tennis in NYC. It specifies exactly what it returns—'the real split between courts you walk on to, courts you reserve, and private clubs, plus what a permit costs'—which distinguishes it from sibling tools like find_courts and get_court.
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 description provides explicit guidance on when to use the tool ('Start here before answering any question about playing tennis in New York City'), establishing it as the entry point. It does not name sibling tools or provide explicit when-not scenarios, but the directive is strong enough to guide an agent's decision.
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!
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceAutomates tennis court bookings on San Francisco Recreation websites, enabling users to check availability and book courts via SMS verification.
- AlicenseAqualityAmaintenanceReal-time tennis data for ATP, WTA, Challenger and ITF: live scores, player rankings, match-winner odds, and model win-probability. 12 read-only tools; a tier-gated endpoint returns a plain-English explanation of which plan it needs rather than a bare 403. Requires a paid API key.24296190MIT
- AlicenseNot gradedqualityCmaintenanceTournament software for tennis, padel, pickleball and more: fair draws, live standings, scores and dropout handling.MIT
- FlicenseNot gradedqualityDmaintenanceAutomates tennis court bookings on San Francisco Recreation websites using browser automation, with tools to check availability, initiate booking with SMS verification, and complete bookings.9