Health
Schätzt den effektiven renalen Plasmafluss über die PAH-Clearance: ERPF = C_PAH = U_PAH·V/P_PAH, normal ~500–700 mL/min (Guyton ≈625–660). PAH wird frei filtriert und fast vollständig im proximalen Tubulus sezerniert (Extraktion ≈0,9); der wahre Plasmafluss ist RPF = ERPF/E, der Nierenblutfluss RBF = RPF/(1−Hkt) und die Filtrationsfraktion FF = GFR/RPF (~0,2). Quellen: StatPearls, Guyton & Hall. Keine medizinische Beratung.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'http://127.0.0.1:3003/de/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}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST http://127.0.0.1:3003/de/api/tools/renal-plasma-flow| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| uPah | number | Ja | Urine PAH concentration. Must use the same units as plasma PAH. |
| pPah | number | Ja | Plasma PAH concentration in the linear (non-saturating) range. |
| vFlow | number | Ja | Urine flow rate in mL/min. |
| extraction | number | Nein | PAH extraction ratio E (fraction removed in one renal pass). Default 0.90. |
| hct | number | Nein |
Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-renal-plasma-flow": {
"name": "renal-plasma-flow",
"description": "Schätzt den effektiven renalen Plasmafluss über die PAH-Clearance: ERPF = C_PAH = U_PAH·V/P_PAH, normal ~500–700 mL/min (Guyton ≈625–660). PAH wird frei filtriert und fast vollständig im proximalen Tubulus sezerniert (Extraktion ≈0,9); der wahre Plasmafluss ist RPF = ERPF/E, der Nierenblutfluss RBF = RPF/(1−Hkt) und die Filtrationsfraktion FF = GFR/RPF (~0,2). Quellen: StatPearls, Guyton & Hall. Keine medizinische Beratung.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=renal-plasma-flow",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"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
}
}
}| Hematocrit as a fraction (0.45 = 45%). If provided, renal blood flow is computed. |
| gfr | number | Nein | Glomerular filtration rate in mL/min. Default 125; used for the filtration fraction. |
| decimalPlaces | number | Nein | — |
JSON-Ergebnis
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Fragen oder Probleme? Kontakt: [email protected]