Health
Calcula objetivos diarios de kcal y proteína para nutrición enteral en adultos, a partir de peso, kcal/kg y g/kg prescritos, y los traduce a volumen de fórmula y velocidad inicial. Energía (kcal/kg/día, ASPEN/SCCM, ESPEN): normal/bien nutrido 20–25; desnutrido/quirúrgico 25–30; crítico inicial (días 1–3) 12–18 (hipocalórica permisiva); recuperación crítica 25–30; gran quemado/trauma grave 30–35; obesos (BMI≥30) 11–14 kcal/kg peso real o 22–25 kcal/kg peso ideal. Proteína (g/kg/día): mantenimiento 0.8–1.0; agudo/estrés leve 1.0–1.2; crítico no obeso 1.2–2.0 (a menudo 1.5–2.0); quemados/trauma/heridas 1.5–2.5; obesos ≥2.0 g/kg peso ideal (crítico ≥2.5); hemodiálisis/CKD 1.0–1.2; encefalopatía hepática 1.0–1.5 (no restringir proteína). Conversión: volumen(mL/día) = objetivo(kcal) / densidad(kcal/mL, 1.0/1.2/1.5/2.0); velocidad inicial(mL/h, 24 h) = volumen/24; habitualmente avance desde 20–50 mL/h cada 4–8 h; adecuación proteica = proteína(g/L)×volumen(L). Precauciones: use peso real salvo obesidad (>120% ideal) o sobrecarga hídrica (entonces peso ideal/ajustado); nutrición trófica (~10 mL/h, ~240 kcal/día) mantiene la integridad intestinal sin buscar objetivo completo; residuo gástrico >500 mL requiere procinéticos/yeyunal, no suspensión automática; cabecera 30–45° y verificar posición de la sonda para reducir neumonía aspirativa. Fuentes: McClave 2016, Singer/ESPEN 2019, Boullata 2017, MDCalc. No es consejo médico.
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/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}'Envía una petición POST con tus entradas en JSON. Los parámetros de tipo archivo requieren una subida previa.
POST https://api.elysiatools.com/es/api/tools/enteral-nutrition-target| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| weight | number | Sí | 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 | Sí | — |
| kcalPerKg | number | Sí | Prescribed energy target in kcal/kg/day. Typical: 20–30 maintenance, 12–18 early critical illness, 30–35 major burns/trauma. |
| proteinPerKg | number | Sí | 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. |
| formulaKcalPerMl | select | Sí | — |
| formulaProteinPerL | number | Sí | Protein density of the selected formula in g/L (read from the label). Used to check protein adequacy against the target. |
| decimalPlaces | number | No | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Añade esta herramienta a tu servidor Model Context Protocol para que los agentes de IA puedan listarla y llamarla.
Añade este bloque a la configuración de tu cliente MCP:
{
"mcpServers": {
"elysiatools-enteral-nutrition-target": {
"name": "enteral-nutrition-target",
"description": "Calcula objetivos diarios de kcal y proteína para nutrición enteral en adultos, a partir de peso, kcal/kg y g/kg prescritos, y los traduce a volumen de fórmula y velocidad inicial. Energía (kcal/kg/día, ASPEN/SCCM, ESPEN): normal/bien nutrido 20–25; desnutrido/quirúrgico 25–30; crítico inicial (días 1–3) 12–18 (hipocalórica permisiva); recuperación crítica 25–30; gran quemado/trauma grave 30–35; obesos (BMI≥30) 11–14 kcal/kg peso real o 22–25 kcal/kg peso ideal. Proteína (g/kg/día): mantenimiento 0.8–1.0; agudo/estrés leve 1.0–1.2; crítico no obeso 1.2–2.0 (a menudo 1.5–2.0); quemados/trauma/heridas 1.5–2.5; obesos ≥2.0 g/kg peso ideal (crítico ≥2.5); hemodiálisis/CKD 1.0–1.2; encefalopatía hepática 1.0–1.5 (no restringir proteína). Conversión: volumen(mL/día) = objetivo(kcal) / densidad(kcal/mL, 1.0/1.2/1.5/2.0); velocidad inicial(mL/h, 24 h) = volumen/24; habitualmente avance desde 20–50 mL/h cada 4–8 h; adecuación proteica = proteína(g/L)×volumen(L). Precauciones: use peso real salvo obesidad (>120% ideal) o sobrecarga hídrica (entonces peso ideal/ajustado); nutrición trófica (~10 mL/h, ~240 kcal/día) mantiene la integridad intestinal sin buscar objetivo completo; residuo gástrico >500 mL requiere procinéticos/yeyunal, no suspensión automática; cabecera 30–45° y verificar posición de la sonda para reducir neumonía aspirativa. Fuentes: McClave 2016, Singer/ESPEN 2019, Boullata 2017, MDCalc. No es consejo médico.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=enteral-nutrition-target",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Tras conectar al endpoint SSE, lista las herramientas expuestas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoca la herramienta por su id; los argumentos se construyen a partir de sus parámetros:
{
"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
}
}
}¿Dudas o problemas? Contacta con [email protected]