Health
Aclaramiento de creatinina por Cockcroft-Gault: CrCl = (140−edad)×peso/(72×SCr), mujer ×0,85. Base de peso opcional: ABW (real) / IBW (Devine) / AdjBW (obesidad, factor 0,4). Marque para planchar SCr a 1,0 mg/dL en ancianos/baja masa muscular. Resultado en mL/min NO indexado a superficie corporal, el valor que usan las tablas de dosificación. 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/creatinine-clearance-cockcroft' \
-H 'Content-Type: application/json' \
-d '{"age":70,"sex":"male","weight":75,"height":0,"serumCreatinine":1,"weightBasis":"ABW","roundScr":false,"decimalPlaces":4}'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/creatinine-clearance-cockcroft| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| age | number | Sí | Patient age in years. Must be ≥18 and ≤120. |
| sex | select | No | — |
| weight | number | Sí | Actual body weight in kg. Must be positive. |
| height | number | No | Height in cm. Required when weight basis is IBW or AdjBW. |
| serumCreatinine | number | Sí |
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-creatinine-clearance-cockcroft": {
"name": "creatinine-clearance-cockcroft",
"description": "Aclaramiento de creatinina por Cockcroft-Gault: CrCl = (140−edad)×peso/(72×SCr), mujer ×0,85. Base de peso opcional: ABW (real) / IBW (Devine) / AdjBW (obesidad, factor 0,4). Marque para planchar SCr a 1,0 mg/dL en ancianos/baja masa muscular. Resultado en mL/min NO indexado a superficie corporal, el valor que usan las tablas de dosificación. No es consejo médico.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=creatinine-clearance-cockcroft",
"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": "creatinine-clearance-cockcroft",
"arguments": {
"age": 70,
"sex": "male",
"weight": 75,
"height": 0,
"serumCreatinine": 1,
"weightBasis": "ABW",
"roundScr": false,
"decimalPlaces": 4
}
}
}| Serum creatinine in mg/dL. Must be positive. |
| weightBasis | select | No | — |
| roundScr | checkbox | No | If checked and SCr < 1.0 mg/dL, use 1.0 mg/dL (convention to avoid overestimating CrCl in elderly/low-muscle-mass patients). |
| decimalPlaces | number | No | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}¿Dudas o problemas? Contacta con [email protected]