MCP server providing real-time and historical tennis data including live scores, players, fixtures, odds, rankings, and match analysis.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Livetennisapi MCP.
get_live_matchesFREE
get_upcoming_matchesFREE
get_matchFREE
get_match_scoreFREE
search_playersFREE
get_playerFREE
MCP server for the Live Tennis API.
Give Claude, Cursor, Zed or any MCP client live tennis scores, players and fixtures β for ATP, WTA, Challenger, ITF and juniors. Odds, rankings, match statistics, charting and model win-probability tools are included, and require the PRO and ULTRA plans.
Claude Code
Claude Desktop β add to claude_desktop_config.json:
Cursor / Zed / others β same command, same env var. No install step; npx
fetches it on demand.
Get a free key (no card) at livetennisapi.com, or a paid plan at pricing.
"What tennis matches are live right now?" "Who's winning the Alcaraz match, and what does the model give him?" "Show me Sinner's ranking and recent results." "What are the current odds on match 18953?" "What's the all-time head-to-head between Borg and McEnroe?" "List Navratilova's Grand Slam finals from the archive." "Who was ATP #1 the week Alcaraz first entered the top 10?" "How is Sabalenka serving in her live match β aces, hold rate, break points?"
| Tool | Does | Plan |
|---|---|---|
get_live_matches | Matches in progress, with live scores | FREE |
get_upcoming_matches | Matches starting soon | FREE |
get_match | Full detail for one match | FREE |
get_match_score | Current score only β fastest read | FREE |
search_players | Find players by name | FREE |
get_player | Profile, ranking, country, handedness | FREE |
get_fixtures | Forward schedule | FREE |
search_tournaments | Tournament catalogue β surface, location, category | FREE |
get_tournament | One tournament by its stable id | FREE |
get_recent_results | Completed matches and winners | BASIC |
search_archive_matches | Results archive (1968β2022) β historical results with ranks and seeds at the time | BASIC |
get_archive_match | One archive result, with serve stats where the era recorded them | BASIC |
search_archive_players | Archive bios β hand, DOB, career-high rank | BASIC |
get_archive_career | Career W-L, titles and serve aggregates over the archive | BASIC |
get_h2h | Cross-era head-to-head β archive + current, one record | BASIC |
get_match_events | Breaks, games, sets, momentum runs | PRO |
get_match_odds | Match-winner prices β bid / ask / mid | PRO |
get_rankings | Full published ranking table per system (ATP, WTA, ITF circuits), any week | PRO |
get_player_rankings | Point-in-time ranking records for specific players, as of any date | ULTRA |
get_match_statistics | In-play statistics β aces, serve split, hold/break %, break points | ULTRA |
get_charting_player | Career shot-level profile from the Match Charting Project | ULTRA |
get_charting_match | One charted match, every stat family, per-set split | ULTRA |
get_match_analysis | Model thesis, win probability, key factors | ULTRA |
check_api_status | Reachability + which plan your key is on | β |
The six BASIC history tools are also unlocked by any History plan, which works
on top of a free key. The results archive (1968β2022) β ATP and WTA, main
draws, qualifying and the ITF/futures tiers β ends exactly where our own
results begin (2023), so search_archive_matches answers "Borg's Wimbledon
finals" and get_recent_results answers "yesterday's scores"; get_h2h spans
both in one call.
The API gates endpoints by plan and returns a bare 403 {"error":"upgrade_required"}.
Handed that, a model will usually invent a reason or retry pointlessly.
So every tool that can hit a tier wall returns a plain-English explanation β as a normal result, not an error β naming the tier required and where to upgrade. The assistant can then tell you something true and actionable:
This data requires the ULTRA plan, and the configured API key is on a lower tier. Nothing is wrong with the key β the endpoint is simply not included in the current plan. Upgrade in place at https://livetennisapi.com/subscribe/upgrade
check_api_status probes upward to report which plan your key is actually on,
so you can diagnose that without guessing.
| FREE | BASIC | PRO | ULTRA | |
|---|---|---|---|---|
| Matches, scores, players, fixtures, tournaments | β | β | β | β |
| Completed-match listings (results)ΒΉ | β | β | β | β |
| Results archive (1968β2022) + head-to-headΒΉ | β | β | β | β |
| Match events, odds + rankings listing | β | β | β | β |
| Model analysis, as-of rankings, match statistics + charting | β | β | β | β |
| $0 β no card | $9.99/mo | $29.99/mo | $99.99/mo |
ΒΉ Also unlocked by any History plan, which works on top of a free key.
| FREE | BASIC | PRO | ULTRA | |
|---|---|---|---|---|
| Requests per minute | 30 | 60 | 300 | 600 |
| Requests per day | 100 | 1,000 | 10,000 | 500,000 |
FREE is 100 requests/day, so poll no faster than every 15 minutes on a free
key; for an always-on dashboard, BASIC is the plan to recommend. Every response
carries X-RateLimit-Limit / -Remaining / -Reset headers, and the tools
relay the three distinct 429 shapes honestly β per-minute (retry shortly),
daily cap (the error names the exact reset instant), and the abuse block
(don't retry; fix the loop).
Most people should use the stdio server above β your key never leaves your machine. For clients that can only speak HTTP, there is also a hosted Streamable-HTTP endpoint:
Send your key as Authorization: Bearer twjp_β¦, X-API-Key: twjp_β¦, or
?token= if your client cannot set headers. Tools are listable without a key,
so directories can introspect the server; calling one needs a key.
It is multi-tenant and holds no key of its own: every request builds its own server bound to the key that request presented, and there is deliberately no fallback to the host's environment. The endpoint applies its own transport-level limit per caller β 60 req/min anonymous, 300 keyed. That limit only protects this host process; it is not your API quota, which is enforced upstream per key and tier (see the quota table above).
Self-hosting it: deploy/install-http.sh and deploy/TUNNEL.md.
As a connector. In Claude, add a custom connector and paste the endpoint with your key as a query parameter β no OAuth, nothing to install:
?token= exists for clients that cannot set request headers. The tradeoff, stated
plainly: a key in a URL is not written to our logs, but it is visible to the CDN
in front of the endpoint and is stored in the connector's configuration. Prefer
Authorization: Bearer twjp_β¦ wherever your client lets you set a header.
From the Messages API. Claude can call the endpoint directly. Both halves are
required β the server and a matching toolset entry; sending mcp_servers alone
is rejected as a validation error:
The authorization_token is sent as a bearer token, which is exactly what this
server already accepts β no separate credential to obtain.
One command:
Or write it to ~/.codex/config.toml yourself β Codex shares that file across the
CLI, the IDE extension and the desktop app:
Use bearer_token_env_var, not bearer_token: it keeps the key in your
environment rather than committing it to a config file.
There is also a Codex plugin, on its own marketplace:
That registers the marketplace; install the plugin from Codex's plugin picker. Source: livetennisapi-codex-plugin.
The stdio route works too, unchanged: npx -y livetennisapi-mcp.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/livetennisapi-livetennisapi-mcp)<a href="https://allmcps.com/mcp/livetennisapi-livetennisapi-mcp"><img src="https://allmcps.com/api/badge/livetennisapi-livetennisapi-mcp?style=directory" alt="Livetennisapi MCP on AllMCPs" /></a>