find_user
Pack: speedrun · Endpoint: https://gateway.pipeworx.io/speedrun/mcp
Look up a speedrunner by username. Returns matching users with their ID, display name, and profile weblink. Example: find_user({ name: “cheese05” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Speedrunner username to look up, e.g. “cheese05” |
_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":"find_user","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.