Sports
Compare a powerlifting total across four strength coefficient systems side by side: DOTS, Wilks (1994), IPF GL Points and Goodlift. Enter sex, body weight and three-lift total (squat + bench + deadlift) in kg or lb, and see each formula's points, coefficient, relative-strength tier and a progress bar showing how close the total is to each system's elite threshold. Complements the existing Wilks calculator by adding DOTS and IPF GL rather than replacing it.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/powerlifting-coefficient-dots-ipf-calculator' \
-H 'Content-Type: application/json' \
-d '{"sex":"male","bodyWeight":83,"total":600,"unit":"kg","equipment":"raw","precision":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/powerlifting-coefficient-dots-ipf-calculator| Name | Type | Required | Description |
|---|---|---|---|
| sex | select | No | — |
| bodyWeight | number | Yes | — |
| total | number | Yes | — |
| unit | select | No | — |
| equipment | select | No | — |
| precision |
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-powerlifting-coefficient-dots-ipf-calculator": {
"name": "powerlifting-coefficient-dots-ipf-calculator",
"description": "Compare a powerlifting total across four strength coefficient systems side by side: DOTS, Wilks (1994), IPF GL Points and Goodlift. Enter sex, body weight and three-lift total (squat + bench + deadlift) in kg or lb, and see each formula's points, coefficient, relative-strength tier and a progress bar showing how close the total is to each system's elite threshold. Complements the existing Wilks calculator by adding DOTS and IPF GL rather than replacing it.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=powerlifting-coefficient-dots-ipf-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": "powerlifting-coefficient-dots-ipf-calculator",
"arguments": {
"sex": "male",
"bodyWeight": 83,
"total": 600,
"unit": "kg",
"equipment": "raw",
"precision": 2
}
}
}| 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]