Health
Clairance de la créatinine par Cockcroft-Gault : CrCl = (140−âge)×poids/(72×SCr), femme ×0,85. Base de poids : ABW (réel) / IBW (Devine) / AdjBW (obésité, facteur 0,4). Option pour plancher SCr à 1,0 mg/dL chez le sujet âgé/faible masse musculaire. Résultat en mL/min NON indexé à la surface corporelle — valeur utilisée pour l'adaptation des doses. Non un avis médical.
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/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}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/creatinine-clearance-cockcroft| Nom | Type | Requis | Description |
|---|---|---|---|
| age | number | Oui | Patient age in years. Must be ≥18 and ≤120. |
| sex | select | Non | — |
| weight | number | Oui | Actual body weight in kg. Must be positive. |
| height | number | Non | Height in cm. Required when weight basis is IBW or AdjBW. |
| serumCreatinine | number | Oui |
Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-creatinine-clearance-cockcroft": {
"name": "creatinine-clearance-cockcroft",
"description": "Clairance de la créatinine par Cockcroft-Gault : CrCl = (140−âge)×poids/(72×SCr), femme ×0,85. Base de poids : ABW (réel) / IBW (Devine) / AdjBW (obésité, facteur 0,4). Option pour plancher SCr à 1,0 mg/dL chez le sujet âgé/faible masse musculaire. Résultat en mL/min NON indexé à la surface corporelle — valeur utilisée pour l'adaptation des doses. Non un avis médical.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=creatinine-clearance-cockcroft",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"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 | Non | — |
| roundScr | checkbox | Non | 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 | Non | — |
Résultat JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Des questions ou un problème ? Contactez [email protected]