← livetennisapi.com

INDIVIDUAL MCP TOOL

search_tournaments

Search the tournament catalogue — the stable id space that match objects carry as tournament_id.

livetennisapi.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.livetennisapi.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for search_tournaments and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

livetennisapi.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.livetennisapi]
url = "https://mcp.livetennisapi.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "livetennisapi": {
      "type": "http",
      "url": "https://mcp.livetennisapi.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: livetennisapi
Remote MCP URL: https://mcp.livetennisapi.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "livetennisapi": {
      "url": "https://mcp.livetennisapi.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "livetennisapi": {
      "type": "http",
      "url": "https://mcp.livetennisapi.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "livetennisapi",
  "transport": "streamable-http",
  "url": "https://mcp.livetennisapi.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_live_matches — List tennis matches currently in progress, with live scores.
  • get_upcoming_matches — List tennis matches scheduled to start soon, with players and tournament.
  • get_match — Full detail for one match by id: players, score, surface, round and status.
  • get_match_score — Current score for one match — the fastest, lowest-latency read.
  • search_players — Search tennis players by name.
  • get_player — One player's profile: ranking, country, handedness, date of birth and cached stats.
  • get_fixtures — Upcoming scheduled tennis fixtures, earliest first — the forward schedule.
  • get_tournament — One tournament by its stable id — the tournament_id carried on match objects.