Health
Calculate a symmetric per-side plate setup for a target barbell weight, with kg/lb support and custom inventory
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/barbell-plate-load-calculator' \
-H 'Content-Type: application/json' \
-d '{"targetWeight":100,"unit":"kg","barbellType":"olympic-20kg","customBarWeight":20,"customInventoryJson":"[{\"weight\":25,\"count\":2},{\"weight\":20,\"count\":4},{\"weight\":10,\"count\":2}]"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/barbell-plate-load-calculator| Name | Type | Required | Description |
|---|---|---|---|
| targetWeight | number | Yes | — |
| unit | select | Yes | — |
| barbellType | select | Yes | — |
| customBarWeight | number | No | — |
| customInventoryJson | textarea | 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-barbell-plate-load-calculator": {
"name": "barbell-plate-load-calculator",
"description": "Calculate a symmetric per-side plate setup for a target barbell weight, with kg/lb support and custom inventory",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=barbell-plate-load-calculator",
"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": "barbell-plate-load-calculator",
"arguments": {
"targetWeight": 100,
"unit": "kg",
"barbellType": "olympic-20kg",
"customBarWeight": 20,
"customInventoryJson": "[{\"weight\":25,\"count\":2},{\"weight\":20,\"count\":4},{\"weight\":10,\"count\":2}]"
}
}
}Questions or issues? Contact [email protected]
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}