Health
Compute daily kcal and protein targets for enterally fed adults from weight, kcal/kg and g/kg prescriptions, then translate them into product volume and starting rate. Targets from ASPEN/SCCM, ESPEN. Caveats: actual vs ideal weight, trophic feeding, gastric residual, aspiration precautions. Derived from McClave 2016, Singer/ESPEN 2019, Boullata 2017, MDCalc. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/enteral-nutrition-target' \
-H 'Content-Type: application/json' \
-d '{"weight":70,"weightBasis":"actual","kcalPerKg":25,"proteinPerKg":1.2,"formulaKcalPerMl":"1","formulaProteinPerL":40,"decimalPlaces":1}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/enteral-nutrition-target| Name | Type | Required | Description |
|---|---|---|---|
| weight | number | Yes | Body weight (kg). Use actual body weight unless the patient is obese (>120% ideal) or significantly fluid-overloaded — then use ideal or adjusted weight and record the choice. |
| weightBasis | select | Yes | — |
| kcalPerKg | number | Yes | Prescribed energy target in kcal/kg/day. Typical: 20–30 maintenance, 12–18 early critical illness, 30–35 major burns/trauma. |
| proteinPerKg | number | Yes | Prescribed protein target in g/kg/day. Typical: 0.8–1.0 maintenance, 1.0–1.5 acute illness, up to 2.0 critically ill, 1.5–2.5 burns. |
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-enteral-nutrition-target": {
"name": "enteral-nutrition-target",
"description": "Compute daily kcal and protein targets for enterally fed adults from weight, kcal/kg and g/kg prescriptions, then translate them into product volume and starting rate. Targets from ASPEN/SCCM, ESPEN. Caveats: actual vs ideal weight, trophic feeding, gastric residual, aspiration precautions. Derived from McClave 2016, Singer/ESPEN 2019, Boullata 2017, MDCalc. Not medical advice.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=enteral-nutrition-target",
"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": "enteral-nutrition-target",
"arguments": {
"weight": 70,
"weightBasis": "actual",
"kcalPerKg": 25,
"proteinPerKg": 1.2,
"formulaKcalPerMl": "1",
"formulaProteinPerL": 40,
"decimalPlaces": 1
}
}
}| formulaKcalPerMl |
| select |
| Yes |
| — |
| formulaProteinPerL | number | Yes | Protein density of the selected formula in g/L (read from the label). Used to check protein adequacy against the target. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Questions or issues? Contact [email protected]