Health
Compute renal clearance C = U × V / P with direct or timed-collection urine flow, interpreted against GFR ≈ 125 mL/min (reabsorption / inulin-like / secretion). Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/renal-clearance-physiology' \
-H 'Content-Type: application/json' \
-d '{"inputMode":"flow","uConc":125,"pConc":1,"vFlow":1,"urineVolume":0,"durationMin":0,"decimalPlaces":1}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/renal-clearance-physiology| Name | Type | Required | Description |
|---|---|---|---|
| inputMode | select | No | Enter urine flow V directly, or derive it from a timed urine collection (volume ÷ duration). |
| uConc | number | Yes | Urine concentration U of the substance. Must use the same units as plasma P (they cancel). |
| pConc | number | Yes | Plasma concentration P of the substance. Must use the same units as urine U. |
| vFlow | number | No | Urine flow rate V in mL/min (used when flow input mode is selected). |
| urineVolume | number |
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-renal-clearance-physiology": {
"name": "renal-clearance-physiology",
"description": "Compute renal clearance C = U × V / P with direct or timed-collection urine flow, interpreted against GFR ≈ 125 mL/min (reabsorption / inulin-like / secretion). Not medical advice.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=renal-clearance-physiology",
"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": "renal-clearance-physiology",
"arguments": {
"inputMode": "flow",
"uConc": 125,
"pConc": 1,
"vFlow": 1,
"urineVolume": 0,
"durationMin": 0,
"decimalPlaces": 1
}
}
}Questions or issues? Contact [email protected]
| No |
| Total urine volume collected (used in timed mode). |
| durationMin | number | No | Collection duration in minutes (used in timed mode). |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}