get_categories
Pack: speedrun · Endpoint: https://gateway.pipeworx.io/speedrun/mcp
List the run categories for a game (e.g. “Any%”, “100%”, “Glitchless”). Use the game ID from search_games. Each category has an ID needed to fetch a leaderboard via get_leaderboard. Example: get_categories({ game_id: “o1y9wo6q” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
game_id | string | yes | Speedrun.com game ID, as returned by search_games (e.g. “o1y9wo6q”) |
_apiKey | string | no | Optional speedrun.com API key for authenticated access; omit to use the shared platform key |
Example call
curl -X POST https://gateway.pipeworx.io/speedrun/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_categories","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"speedrun": {
"url": "https://gateway.pipeworx.io/speedrun/mcp"
}
}
}
See Getting Started for client-specific install steps.