Health
Depuração de creatinina por Cockcroft-Gault: CrCl = (140−idade)×peso/(72×SCr), mulher ×0,85. Base de peso: ABW (real) / IBW (Devine) / AdjBW (obesidade, fator 0,4). Opção para limitar SCr a 1,0 mg/dL em idosos/baixa massa muscular. Resultado em mL/min NÃO indexado à superfície corporal — valor usado para ajuste de doses. Não é conselho médico.
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/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}'Envie uma requisição POST com suas entradas em JSON. Parâmetros do tipo arquivo exigem upload prévio.
POST https://api.elysiatools.com/pt/api/tools/creatinine-clearance-cockcroft| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| age | number | Sim | Patient age in years. Must be ≥18 and ≤120. |
| sex | select | Não | — |
| weight | number | Sim | Actual body weight in kg. Must be positive. |
| height | number | Não | Height in cm. Required when weight basis is IBW or AdjBW. |
| serumCreatinine | number | Sim |
Adicione esta ferramenta ao seu servidor Model Context Protocol para que agentes de IA possam listá-la e chamá-la.
Adicione este bloco à configuração do seu cliente MCP:
{
"mcpServers": {
"elysiatools-creatinine-clearance-cockcroft": {
"name": "creatinine-clearance-cockcroft",
"description": "Depuração de creatinina por Cockcroft-Gault: CrCl = (140−idade)×peso/(72×SCr), mulher ×0,85. Base de peso: ABW (real) / IBW (Devine) / AdjBW (obesidade, fator 0,4). Opção para limitar SCr a 1,0 mg/dL em idosos/baixa massa muscular. Resultado em mL/min NÃO indexado à superfície corporal — valor usado para ajuste de doses. Não é conselho médico.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=creatinine-clearance-cockcroft",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Após conectar ao endpoint SSE, liste as ferramentas expostas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoque a ferramenta pelo seu id; os argumentos são construídos a partir de seus 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 | Não | — |
| roundScr | checkbox | Não | 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 | Não | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Dúvidas ou problemas? Contate [email protected]