Skip to main content
Glama
livetennisapi

livetennisapi-mcp

Server Quality Checklist

83%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.4.0

  • Disambiguation3/5

    Most tools are distinct, but get_upcoming_matches and get_fixtures are nearly synonymous (both list upcoming scheduled matches), and get_match already includes the score that get_match_score returns. These overlaps can cause misselection. The rest are well-differentiated.

    Naming Consistency4/5

    Consistent snake_case verb_noun pattern with get_ for data retrieval, search_ for queries, and check_ for status. Minor inconsistencies: get_fixtures uses a plural noun while similar list endpoints use get_live_matches, and get_archive_career vs get_player are similar in structure. Overall predictable.

    Tool Count4/5

    19 tools is slightly above the ideal range but justifiable for a comprehensive tennis API covering live, historical, players, tournaments, match details, odds, and analysis. No obvious redundancy beyond the two close pairs, so it earns its place.

    Completeness4/5

    Covers the domain thoroughly: live, upcoming, recent results, historical archive, player profiles, tournaments, match details, events, odds, analysis, and status. Minor gaps like the lack of a general player list (only search) or a tournament-specific match schedule are workarounds but not dead ends.

  • Average 4.2/5 across 19 of 19 tools scored. Lowest: 3.4/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 50 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • This repository includes a glama.json configuration file.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior3/5

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

    Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds useful behavioral context by noting the results are 'earliest first' and represent the 'forward schedule'. However, it does not mention pagination, limit behavior, or how open-world results might be incomplete, so it adds only moderate value beyond 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?

    The description is a single, front-loaded sentence that conveys the core purpose and ordering. Every word adds value, with no filler or redundant explanation. It is appropriately sized for such a simple read-only list tool.

    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?

    The tool is simple, has a full output schema, and rich annotations, so the description does not need to explain return values or safety. However, given the context of 24 sibling tools, especially the ambiguous get_upcoming_matches, the description does not fully disambiguate its role in the broader toolset. It clearly separates from live/recent but not from upcoming matches, leaving an important completeness gap.

    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% — both 'tour' and 'limit' have detailed descriptions covering allowed values, defaults, and exclusions (e.g., exhibition events excluded when tour filter used). The tool description provides no additional parameter information, so it earns the baseline 3 for schema-driven semantics.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states it returns 'Upcoming scheduled tennis fixtures, earliest first' — a specific resource (fixtures) with temporal scope and ordering. However, it does not distinguish this from the sibling tool 'get_upcoming_matches', which likely covers the same or overlapping purpose, so it lacks full sibling differentiation.

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

    Usage Guidelines2/5

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

    The description provides no explicit guidance on when to use this tool versus alternatives. It does not mention that live matches should go to get_live_matches or that past results belong to get_recent_results, nor does it clarify the relationship with get_upcoming_matches. The only implied use is for upcoming fixtures, but no exclusions or alternative recommendations are given.

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

  • Behavior3/5

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

    Annotations already establish the read-only, idempotent, and non-destructive nature. The description adds minimal behavioral context by specifying the matches are upcoming ('scheduled to start soon'), but does not disclose additional traits such as default time window, ordering, or dynamic nature beyond what openWorldHint already implies.

    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 a single, front-loaded sentence with no redundant information. It fits the tool's simplicity and is appropriately concise.

    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?

    With strong annotations and full schema coverage, the description covers the core purpose. However, it lacks usage guidance and doesn't differentiate from sibling scheduling tools, leaving an agent to infer when 'upcoming' applies as opposed to 'fixtures' or 'live' matches.

    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 input schema has 100% parameter descriptions, so the baseline is 3. The description does not provide additional parameter meaning; it only vaguely references 'players and tournament' which maps to the player and tour parameters.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    Description clearly states the tool lists tennis matches with a time scope ('scheduled to start soon') and includes players and tournament. It uses a specific verb and resource, but does not explicitly distinguish itself from sibling tools like get_live_matches or get_fixtures, so it gets a 4 rather than 5.

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

    Usage Guidelines2/5

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

    No guidance is provided on when to use this tool versus alternatives. Sibling tools such as get_live_matches, get_fixtures, and get_recent_results suggest overlapping functionality, but the description gives no usage context or exclusions.

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

  • Behavior4/5

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

    The annotations cover read-only, idempotent, open-world, and non-destructive behavior, and the description adds useful context: the plan prerequisite and that results include final scores and winners. No contradiction with annotations, and the extra context earns a 4.

    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 short, purposeful sentences, immediately stating the core function and then adding filter and plan information. No wasted or redundant content.

    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?

    Combined with the complete schema, output schema, and annotations, the description covers the tool's core purpose, filter options, and access requirement. The only slight gap is the vague term 'recently' without a default time window clarification, but the from/to parameters fill that gap.

    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 input schema provides 100% parameter descriptions, so the description's mention of filterable options (tour, player, nationality, play date) adds no new meaning. Baseline 3 is appropriate because the schema carries the parameter semantics fully.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly identifies the resource as recently completed tennis matches with final scores and winners, which distinguishes it from live, upcoming, or archive match tools. However, the action verb is implicit rather than explicit ('List' or 'Get'), so it stops short of a 5.

    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?

    The description states the tool is filterable and mentions the plan requirement, giving a sense of when it applies. However, it does not explicitly compare with sibling tools such as get_archive_matches or get_live_matches, nor does it state 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.

  • Behavior4/5

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

    Annotations already declare readOnly, openWorld, idempotent, and non-destructive hints, so the safety profile is clear. The description adds a meaningful behavioral trait by noting 'cached stats,' which alerts the agent that the data may be cached and not real-time. This goes beyond what annotations state, providing useful context for freshness expectations.

    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 a single, efficient sentence that front-loads the core purpose ('One player's profile') and then lists key attributes. Every word earns its place, with no redundancy or filler.

    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?

    The tool is simple (one parameter, no nested objects), has a full output schema, and clear annotations. The description covers what the tool returns at a high level, which is sufficient for an agent to understand the tool's scope. Missing usage guidance is a separate dimension (scored low), but overall completeness relative to complexity is high.

    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 input schema covers 100% of parameters, and the player_id description 'Player id, as returned by search_players' adds practical guidance on where to obtain the id. The tool description itself does not add further parameter detail, but the schema is already sufficient, meeting the baseline for schema_description_coverage > 80%.

    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 the tool's purpose: retrieving a single player's profile, with a specific list of attributes (ranking, country, handedness, date of birth, cached stats). This is specific and distinct from sibling tools like search_players or get_archive_career, though it does not explicitly name alternatives.

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

    Usage Guidelines2/5

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

    The description implies usage when a player's profile is needed but provides no explicit guidance on when to use this tool versus alternatives. It does not mention any exclusions, prerequisites, or edge cases, leaving the agent to infer context from the tool name and sibling list.

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

  • Behavior4/5

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

    Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive. The description adds meaningful context about data availability ('stats are null for most rows before 1991') and truthfulness ('never synthesised'), which goes beyond annotations and helps set expectations.

    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 cover purpose, scope, data caveats, and plan requirements without redundancy. The 'honestly' adverbial aside is slightly informal but does not waste space; it reinforces the 'never synthesised' claim.

    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 single-fetch tool with an output schema, the description covers the key aspects: scope, historical period, data quality, and access plan. It leaves no major gaps, though it might have mentioned the relationship to search_archive_matches, which the schema already covers.

    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 coverage is 100%, and the schema clearly documents the single parameter (archive_match_id). The description does not add any additional parameter information, so the baseline 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 identifies the tool as returning 'One result from the results archive (1968–2022)', which with the name get_archive_match specifies a single-match retrieval. It distinguishes from list-oriented siblings like search_archive_matches by emphasizing 'one result' and the historical range.

    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?

    Usage is implied: 'One result from the results archive' suggests it is for fetching a specific archived match, but it does not explicitly contrast with sibling tools or state when not to use it. The plan requirement (BASIC or History) is a condition, not an alternative guidance.

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

  • Behavior4/5

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

    Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is known. The description adds the ULTRA plan requirement and specifies the output contents, which is valuable context beyond 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?

    The description is one sentence that front-loads the core purpose and provides key contents and the plan requirement. Every phrase adds value without redundancy.

    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?

    With a comprehensive output schema and safe read-only annotations, the description covers the core aspects. It includes the plan requirement and return contents, making it adequate for a single-parameter analysis tool.

    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 input schema fully documents match_id with a description of where to obtain it, so schema coverage is 100%. The tool description does not add further parameter meaning, so the baseline 3 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?

    The description clearly states the tool provides model analysis for a match, specifically predicted win probability, the model's thesis, and key factors. This distinguishes it from sibling tools like get_match_score or get_match_odds.

    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?

    The description implies use for obtaining model analysis but does not explicitly state when to use it over alternatives or mention exclusions. The ULTRA plan requirement is a prerequisite, not usage guidance.

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

  • Behavior3/5

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

    Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, covering safety. The description adds a bit of context about live scores and tour coverage, but does not disclose behaviors like data delay or filtering nuances beyond the schema. With annotations present, this is adequate but not exceptional.

    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, front-loaded with the primary function, then scope, then usage guidance. Every word earns its place; no fluff or repetition.

    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 simple read-only list tool with a rich schema and output schema, the description fully covers purpose and usage. The annotations and schema handle safety and parameters, so nothing material is missing.

    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 coverage is 100% with detailed descriptions for all four parameters, so the baseline is 3. The description adds no extra parameter meaning (e.g., format, edge cases) beyond the schema, so it stays at baseline.

    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 the tool lists tennis matches currently in progress with live scores, covering major tours. This distinguishes it from siblings like get_upcoming_matches and get_recent_results by emphasizing the 'currently in progress' scope.

    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 explicitly tells users when to use this tool ('what tennis is on right now'), providing a clear usage cue. However, it does not mention when not to use it or name specific alternatives, so it falls short of a full 5.

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

  • Behavior4/5

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

    Annotations already mark it as read-only, idempotent, and non-destructive. The description adds that it requires the PRO plan, an access constraint not covered by annotations. It also clarifies the event categories, but doesn't discuss ordering or pagination behavior beyond what the schema's limit parameter implies.

    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 a single concise sentence with an added access constraint, immediately front-loading the tool's purpose. No redundant words.

    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?

    With an output schema present, return values need not be described. The description covers the event types and the PRO plan requirement; combined with parameter descriptions and annotations, the tool is fully contextualized for a straightforward read-only operation.

    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 input schema contains descriptions for both parameters (100% coverage), so the description adds no additional semantic value for match_id or limit. The baseline score of 3 applies as the schema sufficiently documents parameters.

    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 the tool provides a timeline of events for a match, listing specific event types (breaks, games won, sets won, momentum runs). This differentiates it from sibling tools like get_match or get_match_score, which likely provide summary or score data.

    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?

    The description provides context that this tool is for timeline events, but does not explicitly instruct when to use it over alternatives. There is no mention of when not to use it or which sibling tool to choose for other needs, so guidance is implied rather than explicit.

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

  • Behavior4/5

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

    The annotations already indicate a safe read-only, idempotent operation. The description adds meaningful context beyond the annotations by specifying the PRO plan requirement and detailing the output structure (bid, ask, mid, implied probability). This provides useful operational context without contradicting the 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?

    The description is a single, front-loaded sentence that conveys the essential purpose and output format, then adds the PRO requirement. Every word earns its place with no redundancy or fluff.

    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 simple read-only tool with a fully documented schema and an output schema, the description is complete: it explains the market type, the per-player probabilities, the pricing components, and the access requirement. No critical information is missing for an agent to select and invoke the tool correctly.

    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 input schema already has 100% parameter coverage, describing match_id and limit with defaults and constraints. The description does not add additional parameter semantics beyond that, so the baseline 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 the tool returns match-winner market prices with implied probability per player, bid, ask, and mid. This goes beyond a tautology and distinguishes it from sibling tools like get_match and get_match_score, which focus on other match data.

    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?

    The description implies this tool is for retrieving odds on a specific match, and the mention of 'Requires the PRO plan' is a useful precondition. However, it does not explicitly state when to use this tool versus alternatives like get_match or get_upcoming_matches, nor does it mention exclusions or 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.

  • Behavior4/5

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

    Annotations already indicate read-only and safe behavior. The description adds value by stating the return fields (id, country, ranking, tour) and recommending using the id with get_player, which goes beyond the annotations without contradicting them.

    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 short, front-loaded sentences with no redundant information. Every sentence adds value: what it does, what it returns, and how to use the result.

    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?

    Given the tool's simplicity, the presence of an output schema, and strong annotations, the description is sufficiently complete. It could explicitly state that it searches current players (not archive), but the sibling context and return fields imply this.

    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 input schema has 100% coverage, fully documenting both 'query' and 'limit'. The description does not add any parameter-level meaning beyond the schema, so the baseline 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 the tool searches tennis players by name, with a specific verb and resource. It also mentions the return fields and links to get_player, distinguishing it from other search tools like search_tournaments or search_archive_players.

    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 clear context: use this tool to find a player ID, then use that ID with get_player. It does not explicitly mention exclusions or alternatives, but the purpose is well-defined and actionable.

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

  • Behavior4/5

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

    Annotations already indicate read-only, idempotent, non-destructive behavior. The description adds valuable context: results are 'exactly as charted' including per-set splits, and data coverage is described as mostly lacking live-table counterparts. This goes beyond the annotation baselines to clarify the raw nature and scope of the data.

    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 sentences front-load the core purpose, then clarify the id space and plan requirement. No redundancy or filler; every clause earns its place.

    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?

    With a single parameter, full schema coverage, and an output schema present, the description sufficiently explains what the tool does, the data scope, and access constraints. It covers purpose, id-space nuance, and plan requirement, making it complete for a tool of this 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?

    Schema coverage is 100%, so the baseline is 3. The description reinforces that charting_match_id is its own id space and adds a date range (1960–2026), but the schema already states 'not a match_id'. No significant additional semantics beyond the schema.

    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 the tool retrieves every Match Charting Project stat family for a single charted match, for both players, with per-set splits. It also distinguishes from live-table matches by noting charting ids are their own id space, which separates it from sibling tools like get_match and get_match_statistics.

    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 strong contextual guidance: charting ids are a separate id space (1960–2026) and mostly have no live-table counterpart, implying use for charting data rather than live matches. It also notes the ULTRA plan requirement. However, it does not explicitly name alternative tools or state when not to use this tool, so it falls short of a 5.

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

  • Behavior4/5

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

    Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds meaningful context by specifying what data is included and that market prices are on PRO and model analysis on ULTRA, informing the agent about tier-dependent response content without contradicting 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?

    The description is a single sentence, front-loaded with the core purpose, and lists all key included fields. It is concise and well-structured with no filler or redundancy.

    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 simple get-by-id tool, the description is complete: it covers all included fields, tier-dependent extras, and the output schema exists to handle return structure. The context signals indicate low complexity, and the description adequately covers it.

    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%, with match_id fully documented (including provenance from other match-listing tools). The description adds only 'by id', which is redundant but harmless. Baseline 3 is appropriate since the schema carries the burden.

    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 the tool's function: 'Full detail for one match by id' and lists specific content (players, score, surface, round, status). This differentiates it from siblings like get_match_score (score only) and get_match_analysis (analysis only), with the added mention of market prices and model analysis.

    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 provides clear context for when to use: to fetch full details of a single match by id. The parameter description adds guidance on where the id comes from (get_live_matches, get_upcoming_matches, get_recent_results). It does not explicitly exclude alternatives, but the context is strong enough for an AI agent to select this over more specialized tools.

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

  • Behavior4/5

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

    Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds valuable context about latency ('fastest, lowest-latency read') and currency ('Current score'), which goes beyond the annotations. However, it doesn't discuss edge cases like invalid match IDs or real-time update behavior, which are partly covered by the output schema.

    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 concise sentences, front-loaded with the purpose and followed by usage guidance. No wasted words; every sentence earns its place.

    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 simple, one-parameter read-only tool with comprehensive annotations and an output schema, this description is complete. It states what it does, when to use it, and the schema covers the parameter source. No additional context is necessary.

    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 description for match_id is 100% covered, explaining it is 'as returned by get_live_matches, get_upcoming_matches or get_recent_results.' The tool description adds no extra parameter meaning beyond the schema, so the baseline of 3 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?

    The description clearly states the tool's function: 'Current score for one match'—a specific verb and resource. It also differentiates from siblings by highlighting it as the 'fastest, lowest-latency read' and specifying the use case, which distinguishes it from tools like get_match or get_archive_match.

    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 says when to use it: 'Use this when you only need the score and already know the match id.' This implies when not to use it, but it does not explicitly name alternative tools, so it falls just short of a 5.

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

  • Behavior4/5

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

    Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds context beyond that by noting the ID is stable and carried on match objects, and that some fields (host city/country and category) are provided only 'where curated', indicating possible data incompleteness. 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.

    Conciseness5/5

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

    The description is a single, front-loaded sentence that explains the purpose, the input identifier, and the output fields without any wasted words. It is well-structured and immediately scannable.

    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 simple read-only tool with one parameter and an output schema, the description conveys the core purpose, the required identifier, and the expected data content. It is complete enough for an agent to select and invoke the tool correctly.

    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 fully documents the single parameter (tournament_id) with a clear description, achieving 100% coverage. The tool description adds little beyond repeating that the ID is carried on match objects, so the baseline 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 identifies the tool as retrieving a single tournament by its stable ID and distinguishes it from siblings like search_tournaments. It specifies the resource (tournament) and the key identifier (tournament_id), along with the kind of data returned (name, tour, surface, indoor, etc.).

    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 implies the appropriate context: use this tool when you already have a stable tournament_id, such as one carried on match objects. It does not explicitly mention alternatives or exclusions, but the context is clear and the parameter schema reinforces the source of the ID.

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

  • Behavior4/5

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

    Annotations already declare readOnly/idempotent/openWorld, lowering the bar. The description adds valuable context: return fields (surface, indoor, host city/country, category) and the caveat 'where curated', indicating data may be sparse. It also notes the id space is stable, which is useful for caching and mapping.

    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, front-loaded with the action. Each phrase earns its place: 'stable id space', 'where curated', and the field list. No redundancy or fluff.

    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?

    With an output schema present and only three optional params, the description covers purpose, return fields, and id-mapping context. It is complete enough for an agent to invoke the tool correctly without additional elaboration.

    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?

    Input schema has 100% coverage: tour enum, limit with default/max, and query with example. The description adds no param-specific meaning beyond that, so 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?

    The description opens with 'Search the tournament catalogue', a specific verb+resource pairing. It further distinguishes from sibling tools by framing the catalogue as 'the stable id space that match objects carry as tournament_id', clarifying its role relative to get_tournament and search_archive_matches.

    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 clearly implies when to use this tool: to resolve tournament_id values or search tournaments by name/field. It does not explicitly name alternatives or state exclusions, but the stable-id-space framing and field listing give enough context for an agent to choose it appropriately.

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

  • Behavior4/5

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

    Annotations already provide strong behavioral hints (read-only, idempotent, non-destructive). Description adds specific context (reachability, plan check) without contradicting. High transparency overall.

    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?

    Extremely concise: two sentences, front-loaded with action, no unnecessary words.

    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?

    Low complexity: no parameters, output schema exists, annotations rich. Description efficiently conveys purpose and diagnostic context. Complete.

    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, so description is not required to elaborate on param semantics. Schema coverage is 100% (empty schema). Baseline score of 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?

    Clear verb+resource: 'Check whether the Live Tennis API is reachable and which plan'. Distinguishes from sibling data-fetching tools (get_fixtures, get_match, get_upcoming_matches) by being a diagnostic tool.

    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?

    Provides context on when to use ('diagnosing why other tools are refusing data'), but does not explicitly state exclusions or alternatives. Given simplicity, this is adequate.

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

  • Behavior4/5

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

    Annotations already declare read-only/idempotent; the description adds coverage scope, ambiguous-name resolution behavior, and plan restrictions. It does not contradict 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?

    The description is a single dense paragraph that front-loads the main purpose, lists specific data points, and follows with coverage and plan caveats. No filler or repetition.

    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?

    The description covers what it returns, its data coverage, ambiguity handling, and access restrictions. With an output schema present, this is sufficient for an agent to select and invoke the tool correctly.

    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 already gives both parameters full descriptions. The description adds that ambiguous names return candidates, enhancing understanding of the name parameter; gender's role is inferred from the schema.

    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 identifies the tool as returning a 'Career shot-level profile from the Match Charting Project' and enumerates specific stat categories. This specific resource and data type distinguish it from sibling tools like get_player or get_archive_career.

    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 context about when this tool is appropriate: when needing shot-level charted career stats. It warns about curated coverage and the ULTRA plan requirement, which implies boundaries, but it does not explicitly name alternative tools or state 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.

  • Behavior5/5

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

    Beyond the annotations (readOnlyHint, idempotentHint), the description adds substantial behavioral context: the derived vs. measured family distinction, the variability of measured coverage by tour, and the omission (not zero-filling) of absent fields. This exceeds annotation coverage and provides meaningful operational nuance.

    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 long and front-loads the core purpose. Each sentence earns its place, packing in the two families, coverage caveat, omission policy, and plan requirement without redundancy. No wasted words.

    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 single-parameter tool with an output schema, annotations, and rich context, the description fully covers the essential behavioral aspects (families, coverage variability, missing fields) and the plan requirement. An agent has everything needed to select and invoke it correctly.

    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?

    With schema description coverage at 100% for the single parameter (match_id, already described as returned by other endpoints), the description adds no parameter-specific semantics. The baseline of 3 applies because the schema carries the full parameter documentation.

    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 identifies the tool as returning statistics for one match, with a specific verb ('get') and resource ('match statistics'). It distinguishes itself from sibling tools (score, events, analysis, odds) by focusing on the two statistic families and their unique characteristics.

    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 implies usage for retrieving match statistics, and explicitly states the ULTRA plan requirement, which is a clear prerequisite. However, it does not name alternative tools for different needs or provide explicit 'when not to use' guidance, though the context is sufficient for most cases.

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

  • Behavior4/5

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

    Annotations already declare read-only, idempotent, non-destructive behavior. The description adds value beyond annotations by specifying the record shape (winner/loser with final score, seeds, ranks at match time), the historical cutoff, and the plan requirement. It does not contradict any 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: the first concisely states purpose and scope, the second gives usage context and boundary. No redundant wording; every clause carries meaningful content.

    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?

    The description fully covers what an agent needs: the tool's scope, the distinction from recent results, the output shape, and access requirements. Combined with rich schema (7 params, 100% covered) and output schema present, it is sufficiently complete for correct invocation.

    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 coverage is 100%, with each parameter already described. The description adds no extra parameter-level meaning, so the baseline of 3 applies. It does mention general output shape but not specific parameter usage beyond what schema 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 explicitly states the tool searches the completed-match results archive with specific scope: ATP/WTA, main draws, qualifying, ITF/futures tiers, and date range 1968–2022. It clearly distinguishes from recent results by naming get_recent_results as the successor for post-2022 data.

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

    Usage Guidelines5/5

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

    Provides explicit guidance: 'Use this for historical questions' and states the archive ends where get_recent_results begins, directly naming the alternative. Also mentions the required plan level, giving a clear prerequisite for invocation.

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

  • Behavior4/5

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

    Annotations already cover safety (read-only, idempotent, non-destructive), so the description adds value by explaining that IDs are corpus person IDs not roster IDs, and enumerates the returned fields. It could further elaborate on open-world behavior, but annotations mitigate that need.

    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, all informative: the first describes the data scope and fields, the second clarifies ID semantics and provides an alternative, and the third gives the plan requirement. There is no filler or repetition of schema details.

    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 an output schema exists, the description doesn't need to explain return structure. It covers the historical scope, ID distinction, alternative tool, and plan requirement, making it complete for a search tool with this simplicity. The sibling distinction is especially useful in a large toolset.

    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 baseline is 3. The description does not add additional meaning to the query, tour, or limit parameters beyond what the schema already provides, but it does clarify the context of how the query maps to archive player identities.

    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 identifies the resource (people in the results archive 1968–2022) and specifies the exact return fields (hand, date of birth, country, height, career-high rank). It also distinguishes itself from the sibling tool search_players by noting the id type and scoping to archive players.

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

    Usage Guidelines5/5

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

    Explicitly states when to use this tool vs. the alternative: 'for current players use search_players'. It also discloses the plan requirement ('Requires the BASIC plan or any History plan'), giving clear prerequisites and context for invocation.

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

  • Behavior5/5

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

    Beyond the readOnlyHint and other annotations, the description adds meaningful behavioral details: rows carry null player_id for non-roster players to avoid silent holes, ITF data starts on 2026-07-29, and PRO plan access is required. 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.

    Conciseness5/5

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

    The description is four sentences, front-loaded with the core purpose, and adds relevant caveats without redundancy. Every sentence contributes value, making it efficient and well-structured.

    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?

    With an output schema present, return values are covered. The description covers data coverage (ITF start date), row-level behavior (null player_id), the alternative tool, and the PRO plan. The minor inconsistency between 'FULL table' and the limit parameter prevents a perfect score, but overall it is highly complete.

    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 coverage is 100%, so the baseline is 3. The description restates as_of semantics but does not add significant new parameter-level meaning beyond what the schema already describes. The 'FULL' phrasing could conflict with the limit parameter, though the schema clarifies the limit behavior.

    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 the tool lists the FULL published ranking table in rank order for one system, with the specific date semantics (newest week at or before as_of). It distinguishes itself from the sibling tool get_player_rankings by focusing on the full table rather than specific players.

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

    Usage Guidelines5/5

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

    The description explicitly says 'For point-in-time records of SPECIFIC players use get_player_rankings', giving a clear alternative and when-to-use guidance. It also notes the PRO plan requirement, which sets expectations for availability.

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

  • Behavior5/5

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

    Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, but the description adds valuable caveats: serve stats only exist from 1991, matches_with_stats quantifies coverage, ambiguous names yield candidate lists, and a plan requirement exists. These go beyond the structured 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?

    The description is information-dense but well-organized, front-loading the core purpose and then adding necessary caveats. Every clause adds value, with no redundancy or filler.

    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?

    The description covers data scope, statistics included, coverage limitations, ambiguity resolution, and plan requirements. With an output schema present, detailing return values is unnecessary, making this complete for a tool of this complexity.

    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 already describes the 'name' parameter with minLength and 'must resolve to exactly one person.' The description adds the behavioral detail that an ambiguous fragment returns a candidate list, which is not in the schema, thus adding meaning beyond the schema.

    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 the tool retrieves one player's whole career aggregates from the results archive, listing specific statistics (W-L by surface/level/year, titles, serve stats) and the date range (1968–2022). This distinct focus differentiates it from siblings like get_player or get_archive_match.

    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?

    Provides clear context for when to use the tool (career-level aggregation) and a key constraint: the name must resolve to exactly one person, with ambiguous fragments returning a candidate list. It does not explicitly name alternative tools or state when not to use this over others, but the context is sufficient.

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

  • Behavior5/5

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

    Beyond annotations (readOnly, idempotent), the description discloses meaningful behaviors: totals count only meetings with a known winner, walkovers/retirements are included, each meeting carries its outcome, and ambiguous names return candidate lists. This adds significant context for edge cases and data semantics, exceeding what annotations provide.

    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 appropriately sized at four sentences, with the main purpose front-loaded. Every sentence serves a purpose: scope, name handling, counting methodology, and access requirement. No wasted words.

    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?

    With a clear output schema and only two simple parameters, the description covers the tool's purpose, data coverage, edge-case handling, and plan requirement. No significant gaps remain for an agent to select and invoke the tool correctly.

    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 schema already documents both parameters with examples and minLength. The description adds that names are 'keys' and that ambiguous fragments return a candidate list, enriching the meaning of the name parameters beyond basic schema descriptions. Schema coverage is 100%, so this is a bonus.

    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 the tool's purpose: 'The all-time record between two players,' specifying the data scope (archive 1968–2022 and completed matches 2023 onward). This distinguishes it from sibling tools like get_match or get_player, which focus on individual matches or player profiles.

    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?

    Provides clear context for when to use the tool: for head-to-head comparisons between two named players. It also explains the candidate-list behavior for ambiguous fragments. However, it does not explicitly name alternative tools or state when not to use this tool, only that it requires a BASIC plan.

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

  • Behavior5/5

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

    Beyond the readOnly/openWorld/idempotent annotations, the description discloses the as-of lookup semantics (newest record on or before, never after), per-system data shape (ATP/WTA rank+points vs UTR rating), data availability start date for ITF/UTR, and plan requirement. 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?

    Four sentences, each serving a distinct purpose: core definition, differentiation from current data, system-specific details, and coverage/access constraints. Front-loaded with the most important 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?

    The tool is well-specified with a rich description covering historical semantics, system behavior, data coverage, and access requirements. The existing output schema covers return values, so the description's omissions are acceptable. There are minor unknowns like behavior before history begins, but the description explicitly notes the start date, so completeness is high.

    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 coverage is 100% for all three parameters, so baseline is 3. The description adds critical semantics beyond the schema: the 'newest record in force ON OR BEFORE as_of — never one dated after it' rule clarifies edge cases, and 'Systems are never collapsed' clarifies how the system parameter behaves. This goes beyond the basic baseline, though the schema already explains each parameter adequately.

    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 a specific verb ('get') and resource ('player rankings'), and immediately scopes it to 'SPECIFIC players' and 'point-in-time' historical records. It explicitly contrasts with the API's other current-value ranking fields, distinguishing it from siblings like get_rankings.

    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 establishes when to use this tool: when historical point-in-time rankings for specific players are needed, and explicitly notes that every other ranking field returns current values. It also adds a prerequisite (ULTRA plan). However, it does not name a specific alternative tool (e.g., get_rankings) or state exclusions like 'use get_rankings for current rankings'.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

livetennisapi-mcp MCP server

Copy to your README.md:

Score Badge

livetennisapi-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/livetennisapi/livetennisapi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server