polo
Server Details
First dedicated polo MCP — 2026 USPA, Argentine Triple Crown, British Open. Tournaments + players.
- 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/5 across 5 of 5 tools scored.
Each tool targets a distinct resource: players, teams, tournaments (single and list), and venues. There is no overlap in purpose.
All tools follow a consistent 'get_' prefix with snake_case nouns (getPlayers, getTeams, etc.), making them predictable and easy to use.
Five tools is well-scoped for a read-only data server covering the core entities of a polo domain: players, teams, tournaments, and venues.
The tool set covers the main entities needed for polo data access. Minor gaps exist, such as missing match results and limited team coverage (only U.S. Open), but the core functionality is present.
Available Tools
5 toolswhensport_polo_getPlayersGet the polo player rosterARead-onlyInspect
Get the polo player roster (handicaps, nationalities).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description adds that the tool returns handicaps and nationalities. This is sufficient for a simple read operation. Does not mention ordering or limits, but given no parameters, the behavior is straightforward.
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, zero waste. Every word contributes to meaning.
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 read-only tool with no parameters and no output schema, the description is adequate: it specifies the data content. Could be more explicit that it returns a list, but that is implied.
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?
Input schema has no parameters (0 params, 100% coverage). Baseline for no parameters is 4, and the description does not need to add parameter info.
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 verb 'Get' and resource 'polo player roster' with added detail on data fields (handicaps, nationalities). Distinguishes from sibling tools like getTeams or getTournament by specifying the exact data domain.
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 when-to-use or when-not-to-use guidance. Usage can be inferred from the context of sibling tools (players vs. teams/tournaments), but no direct alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
whensport_polo_getTeamsGet the polo team roster for the U.S. Open Polo Championship (Bracket I + II)ARead-onlyInspect
Get the polo team roster for the U.S. Open Polo Championship (Bracket I + II) — rosters, handicaps, win/loss records, scraped daily from uspolo.org. Coverage limited to the U.S. Open; Argentine Triple Crown and British Open team rosters are not yet exposed.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint true, so the description adds value by noting the data is scraped daily from uspolo.org and coverage is limited to U.S. Open. This provides useful context beyond annotations about freshness and 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?
Two sentences with no redundancy. The first sentence states the purpose and data provided, the second clarifies limitations. Front-loaded with key action and context.
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?
The description covers what data is returned, the source, and exclusions. With no output schema, it provides sufficient detail for an agent to understand the tool's output. Could mention if ordering or additional details exist, but it's adequate.
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 no parameters and 100% coverage, so description does not need to add parameter details. It mentions the output fields (rosters, handicaps, records), which is helpful but not strictly parameter semantics. 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?
The description clearly states it gets the polo team roster for the U.S. Open Polo Championship including rosters, handicaps, and win/loss records. It distinguishes itself from sibling tools (getPlayers, getTournaments, etc.) by specifying the exact championship and data scope.
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 states the tool is for U.S. Open team rosters and clarifies it does not cover Argentine Triple Crown or British Open. While it does not directly mention alternative sibling tools, the exclusions provide clear guidance on when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
whensport_polo_getTournamentGet a single polo tournament by slugARead-onlyInspect
Get a single polo tournament by slug (e.g. dubai-polo-gold-cup, uspa-gold-cup, argentine-open). Returns rounds, format, handicap, venue. Note: result on completed tournaments may be null pending data backfill.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds behavioral context beyond annotations: notes that results for completed tournaments may be null pending data backfill. Annotations already indicate read-only safe operation.
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: front-loaded purpose and example, then a critical note. 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?
Complete for a simple retrieval tool with one param. Mentions return fields (rounds, format, handicap, venue) and an edge case. Lacks output schema but 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?
With 0% schema description coverage, description compensates by explaining the slug parameter with examples, though could be more formally defined.
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 explicitly states 'Get a single polo tournament by slug' with example slugs, clearly distinguishing from sibling getTournaments (plural).
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 when you have a specific slug, contrasting with getTournaments for listing all. Could be more explicit about when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
whensport_polo_getTournamentsGet the polo tournament listARead-onlyInspect
Get the polo tournament list (USPA / Argentine Triple Crown / British Open). Each tournament returns a top-level startDate derived from the earliest round date. Note: this MCP is schedule-focused; champion/result on completed tournaments may be null pending ingestion — consult uspolo.org / aapolo.com / hpa-polo.co.uk for confirmed winners.
| Name | Required | Description | Default |
|---|---|---|---|
| upcomingOnly | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses that champion/result fields may be null pending ingestion, and notes the startDate derivation. This adds worthwhile context about data completeness. No contradiction 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?
Three sentences, each providing distinct information: purpose, data behavior, and limitation/alternative. No redundant or 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?
The description covers purpose and data limitations, but omits the input parameter and any return structure details. Without output schema, more detail on what the list contains would be helpful. Adequate but with gaps.
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 one boolean parameter (upcomingOnly) with 0% schema description coverage, but the description does not mention this parameter at all. It fails to explain how to filter or what the parameter does, leaving the agent without guidance for invocation.
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 gets a list of polo tournaments, specifying three specific tournaments (USPA, Argentine Triple Crown, British Open). It distinguishes from siblings which cover players, teams, specific tournament, 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?
Description mentions this is schedule-focused and that champion/result may be null, implying the tool is for scheduled events not results. However, it does not explicitly compare to sibling tools like getTournament for detailed tournament info, nor provide when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
whensport_polo_getVenuesGet the polo venue listARead-onlyInspect
Get the polo venue list.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the tool's safety is known. The description adds no further behavioral context beyond the obvious, which is acceptable given annotation coverage.
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?
One short sentence, efficient and front-loaded. Slightly more detail could be added, but it's appropriately concise for a simple list tool.
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?
Description is complete enough for a no-parameter tool, but lacks details about the venue list structure (e.g., fields). No output schema provided, leaving some ambiguity.
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; schema coverage is 100%. Description adds no parameter info, but none needed. Baseline for 0 parameters is 4.
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 polo venue list', specifying the verb 'get' and the resource 'venue list'. It distinguishes from sibling tools (getPlayers, getTeams, etc.) by focusing on 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?
No guidance on when to use this tool vs alternatives. While it's implied for basic venue listing, there is no explicit when/not or alternative descriptions.
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!