Wraps the Speedrun.com API v1 to pull speedrunning data into your Claude workflow. Part of the Pipeworx gateway, which offers a natural language interface through ask_pipeworx instead of calling individual tools directly. You can connect to just the Speedrun endpoint or the full Pipeworx gateway for access to 780+ data sources. Useful when you're analyzing gaming records, tracking world record progressions, or building dashboards around speedrunning communities. The streamable HTTP transport makes it straightforward to drop into Claude Desktop or similar clients. The README doesn't enumerate specific tools, so you'll need to explore what query patterns the API v1 wrapper exposes once connected.
Speedrun.com MCP — wraps the Speedrun.com API v1 (speedrun.com/api/v1)
Part of Pipeworx — an MCP gateway connecting AI agents to 780+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"speedrun": {
"url": "https://gateway.pipeworx.io/speedrun/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 780+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Speedrun data" })
The gateway picks the right tool and fills the arguments automatically.
MIT