Sports
Plan a HYROX race end to end: per-lap 1 km run splits under an even, negative-split or fade strategy, auto-distributed station targets for your finish time, the 8 Roxzone transition budget, and your division’s official sled push/pull weights with the plate stack to load.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/hyrox-race-station-split-and-sled-loading-planner' \
-H 'Content-Type: application/json' \
-d '{"division":"men-open","targetFinishMin":90,"runPace":"5:30","pacingStrategy":"even","roxzoneSec":90,"stationOverrides":"","sledBaseKg":52}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/hyrox-race-station-split-and-sled-loading-planner| Name | Type | Required | Description |
|---|---|---|---|
| division | select | Yes | — |
| targetFinishMin | number | Yes | — |
| runPace | text | Yes | — |
| pacingStrategy | select | No | — |
| roxzoneSec | number | No | — |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-hyrox-race-station-split-and-sled-loading-planner": {
"name": "hyrox-race-station-split-and-sled-loading-planner",
"description": "Plan a HYROX race end to end: per-lap 1 km run splits under an even, negative-split or fade strategy, auto-distributed station targets for your finish time, the 8 Roxzone transition budget, and your division’s official sled push/pull weights with the plate stack to load.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=hyrox-race-station-split-and-sled-loading-planner",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "hyrox-race-station-split-and-sled-loading-planner",
"arguments": {
"division": "men-open",
"targetFinishMin": 90,
"runPace": "5:30",
"pacingStrategy": "even",
"roxzoneSec": 90,
"stationOverrides": "",
"sledBaseKg": 52
}
}
}| stationOverrides |
| textarea |
| No |
| — |
| sledBaseKg | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]