Skip to main content
Glama

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.

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.3/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness5/5

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 tools
find_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum venues to return. Default 25, maximum 120.
accessNowalk_on: public park, no booking. reservation: public park court bookable through NYC Parks. private_club: runs its own booking.
boroughNoBorough name, e.g. Manhattan, Brooklyn, Queens, Bronx, Staten Island.
minCourtsNoMinimum number of courts at the venue.
indoorOnlyNoOnly venues where a source confirms indoor play. Venues never researched are excluded rather than assumed outdoor.
lightedOnlyNoOnly venues with at least one floodlit court.
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesVenue slug, e.g. central-park. From find_courts.
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

Discussions

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

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Real-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.
    24
    296
    190
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Tournament software for tennis, padel, pickleball and more: fair draws, live standings, scores and dropout handling.
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Automates 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

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources