Health
Estimate ERPF from PAH clearance (C = U·V/P, normal ~500–700 mL/min), plus true RPF, renal blood flow from Hct, and filtration fraction from GFR. 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-plasma-flow' \
-H 'Content-Type: application/json' \
-d '{"uPah":6.5,"pPah":0.01,"vFlow":1,"extraction":0.9,"hct":0.45,"gfr":125,"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-plasma-flow| Name | Type | Required | Description |
|---|---|---|---|
| uPah | number | Yes | Urine PAH concentration. Must use the same units as plasma PAH. |
| pPah | number | Yes | Plasma PAH concentration in the linear (non-saturating) range. |
| vFlow | number | Yes | Urine flow rate in mL/min. |
| extraction | number | No | PAH extraction ratio E (fraction removed in one renal pass). Default 0.90. |
| hct | number | No |
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-plasma-flow": {
"name": "renal-plasma-flow",
"description": "Estimate ERPF from PAH clearance (C = U·V/P, normal ~500–700 mL/min), plus true RPF, renal blood flow from Hct, and filtration fraction from GFR. Not medical advice.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=renal-plasma-flow",
"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-plasma-flow",
"arguments": {
"uPah": 6.5,
"pPah": 0.01,
"vFlow": 1,
"extraction": 0.9,
"hct": 0.45,
"gfr": 125,
"decimalPlaces": 1
}
}
}Questions or issues? Contact [email protected]
| Hematocrit as a fraction (0.45 = 45%). If provided, renal blood flow is computed. |
| gfr | number | No | Glomerular filtration rate in mL/min. Default 125; used for the filtration fraction. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}