Query speedrun.com games, leaderboards, records, players, and personal bests. No API key needed.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
๐ก 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 Speedrun MCP.
search_gamesFuzzy-search games by name โ ids & abbreviations
get_gameA game's details plus its categories (and optionally levels)
list_categoriesA game's categories (`Any%`, `120 Star`, โฆ) with rules
list_variablesSubcategory/filter variables and their value ids
list_platformsPlatform / region ids for the `platform`/`region` leaderboard filters
get_leaderboardA ranked leaderboard (top N; filter by variable / platform / region / timing)
A Model Context Protocol server for speedrun.com โ let an AI assistant query games, categories, leaderboards, world records, players and their personal bests, and (with an API key) submit and moderate runs.
"What's the current Super Mario 64 16-star world record, and who holds it?"
Built on speedrun.com's official REST API. The read tools need no account or API key โ add a key (see Authenticated features) to unlock identity reads and, optionally, run submission and moderation. Results come back as compact, model-friendly JSON (player ids resolved to names, durations formatted, subcategory variables labeled).
Ask "the SM64 16-star world record?" and the model calls get_world_record,
which returns compact, resolved JSON:
| Tool | What it does |
|---|---|
search_games | Fuzzy-search games by name โ ids & abbreviations |
get_game | A game's details plus its categories (and optionally levels) |
list_categories | A game's categories (Any%, 120 Star, โฆ) with rules |
list_variables | Subcategory/filter variables and their value ids |
list_platforms / list_regions | Platform / region ids for the platform/region leaderboard filters |
get_leaderboard | A ranked leaderboard (top N; filter by variable / platform / region / timing) |
get_world_record | The current #1 run for a game/category, plus any runs tied for first |
get_game_records | Every category's records for a game in one call (defaults to world records) |
search_series | Fuzzy-search game series (e.g. Mario, Zelda) |
get_series | A series' details and the games it contains |
search_users | Find players by username (partial, fuzzy match) |
get_user_personal_bests | A player's PBs across all games |
get_run | Details of a single run |
list_runs | Runs filtered by player / game / category / status / examiner |
list_unverified_runs | A game's runs awaiting verification (the moderation queue) |
whoami | The profile that owns your API key (only shown when a key is set) |
list_notifications | Your speedrun.com notifications (only shown when a key is set) |
A typical flow: search_games โ list_categories (and list_variables for
subcategories) โ get_leaderboard / get_world_record. Use list_platforms /
list_regions when you need an id for the platform / region filters.
With write tools enabled (see below), submit_run, verify_run, reject_run,
set_run_players and delete_run are also available.
Requires Python 3.10+.
The server speaks MCP over stdio:
Add to your MCP client config (e.g. claude_desktop_config.json):
If you installed from source into a virtualenv, point command at that
interpreter, e.g. "command": "/path/to/.venv/bin/speedrun-mcp".
For Claude Code:
An API key is entirely optional. With no key, the server exposes only the public read tools (leaderboards, games, players, the moderation queue) and works exactly as described above โ no account required. Adding your key unlocks more:
| Set this env var | Effect |
|---|---|
SPEEDRUN_API_KEY | Puts the server in read-only authenticated mode. Adds the identity reads โ whoami (the profile your key belongs to) and list_notifications. The write tools (submit_run, verify_run, reject_run, set_run_players, delete_run) also become visible, but stay disabled โ calling one returns a message telling you to enable writes. Until a key is set, none of these are advertised at all. |
SPEEDRUN_ENABLE_WRITES=1 | Switches to read-write mode: arms the write tools so they actually submit/moderate. Requires SPEEDRUN_API_KEY (moderation also needs a moderator key). Off by default โ submitting and rejecting/deleting are real, permanent actions on real leaderboards, so opt in deliberately. |
Read-only is the default. Just adding a key never changes anything on speedrun.com โ you get identity reads, and everything keeps working perfectly. If a write tool is invoked while writes are off, it doesn't silently fail; it returns:
This server is in read-only mode, so this write action is disabled. To allow run submission and moderation, set the environment variable SPEEDRUN_ENABLE_WRITES=1 (alongside SPEEDRUN_API_KEY) and restart the server.
So the way to switch to read-write mode is always discoverable from the error itself.
Treat the key like a password โ anyone who has it can act as you on speedrun.com. If it ever leaks, regenerate it from that same page.
Add the key to your MCP client config under env. It is read only from the
environment โ never passed as a tool argument โ so it can't leak into the
model's context or transcripts. Add SPEEDRUN_ENABLE_WRITES=1 only when you want
writes to actually run; with the key alone you stay safely read-only.
Or with Claude Code:
Keep the key out of version control โ put it in your client config or a local,
git-ignored .env, never in a committed file. All tools carry MCP read-only /
destructive hints so clients can flag the write and moderation actions.
SPEEDRUN_API_KEY and SPEEDRUN_ENABLE_WRITES (see above).o1y9wo6q) or an
abbreviation (sm64). For precise subcategory leaderboards (e.g. 16 Star),
discover the variable/value ids with list_variables and pass
variables={variable_id: value_id}.level to a full-game category
returns "The selected category is for full-game runs, but a level was selected."timing
(realtime / realtime_noloads / ingame), the reported time /
time_seconds match that ranking, not the game's default timing.get_leaderboard returns returned_runs (the number of runs returned,
bounded by top and ties โ not the full board size) and a runs list with
resolved player names, formatted times, and labeled subcategories.get_world_record returns world_record (the place-1 run, or null if
the board is empty) plus tied (a list of any other runs sharing first place).get_user_personal_bests returns returned (how many came back, capped by
limit) and total_available (the player's true PB count), plus the
personal_bests list with game/category names and resolved players.MIT
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/speedrun-mcp)<a href="https://allmcps.com/mcp/speedrun-mcp"><img src="https://allmcps.com/api/badge/speedrun-mcp?style=directory" alt="Speedrun MCP on AllMCPs" /></a>