Health
评估新生儿出生后即刻状况(1 分钟和 5 分钟,5 分钟分数过低时可延长至 10 分钟):肤色(全身苍白/青紫=0、四肢青紫身体粉红=1、全身粉红=2)、心率(无=0、<100=1、≥100 bpm=2)、反射(无反应=0、皱眉=1、咳嗽/打喷嚏/有力哭=2)、肌张力(松软=0、四肢稍屈=1、主动运动=2)、呼吸(无=0、慢/不规则/哭声弱=1、良好/有力哭=2),每项 0-2 分,每个时间点总分 0-10。7-10 放心;4-6 中度异常(可能需辅助);0-3 严重低(立即复苏)。5 分钟分数及与 1 分钟的变化反映复苏反应。来源 Apgar 1953、ACOG 2006、AAP/ACOG。Apgar 是某一时刻的生理快照,不能单独作为窒息或神经损伤标志。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/apgar-score' \
-H 'Content-Type: application/json' \
-d '{"appearance1":"1","pulse1":"2","grimace1":"1","activity1":"1","respiration1":"1","appearance5":"2","pulse5":"2","grimace5":"2","activity5":"1","respiration5":"2"}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/apgar-score| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| appearance1 | select | 是 | Skin color at 1 min. Pale/blue all over =0; blue extremities/pink body =1; completely pink =2. |
| pulse1 | select | 是 | Heart rate at 1 min. No pulse =0; <100 bpm =1; ≥100 bpm =2. |
| grimace1 | select | 是 | Reflex irritability at 1 min. No response =0; grimace =1; cough/sneeze/vigorous cry =2. |
| activity1 | select | 是 | Muscle tone at 1 min. Limp =0; some flexion =1; active motion =2. |
| respiration1 | select | 是 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-apgar-score": {
"name": "apgar-score",
"description": "评估新生儿出生后即刻状况(1 分钟和 5 分钟,5 分钟分数过低时可延长至 10 分钟):肤色(全身苍白/青紫=0、四肢青紫身体粉红=1、全身粉红=2)、心率(无=0、<100=1、≥100 bpm=2)、反射(无反应=0、皱眉=1、咳嗽/打喷嚏/有力哭=2)、肌张力(松软=0、四肢稍屈=1、主动运动=2)、呼吸(无=0、慢/不规则/哭声弱=1、良好/有力哭=2),每项 0-2 分,每个时间点总分 0-10。7-10 放心;4-6 中度异常(可能需辅助);0-3 严重低(立即复苏)。5 分钟分数及与 1 分钟的变化反映复苏反应。来源 Apgar 1953、ACOG 2006、AAP/ACOG。Apgar 是某一时刻的生理快照,不能单独作为窒息或神经损伤标志。不构成医疗建议。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=apgar-score",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}连接到 SSE 端点后,列出已开放的工具:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}通过工具 id 调用,参数由其参数表构建:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "apgar-score",
"arguments": {
"appearance1": "1",
"pulse1": "2",
"grimace1": "1",
"activity1": "1",
"respiration1": "1",
"appearance5": "2",
"pulse5": "2",
"grimace5": "2",
"activity5": "1",
"respiration5": "2"
}
}
}有问题或反馈?请联系 [email protected]
| Respiration at 1 min. Absent =0; slow/irregular/weak cry =1; good/strong cry =2. |
| appearance5 | select | 是 | Skin color at 5 min. Pale/blue all over =0; blue extremities/pink body =1; completely pink =2. |
| pulse5 | select | 是 | Heart rate at 5 min. No pulse =0; <100 bpm =1; ≥100 bpm =2. |
| grimace5 | select | 是 | Reflex irritability at 5 min. No response =0; grimace =1; cough/sneeze/vigorous cry =2. |
| activity5 | select | 是 | Muscle tone at 5 min. Limp =0; some flexion =1; active motion =2. |
| respiration5 | select | 是 | Respiration at 5 min. Absent =0; slow/irregular/weak cry =1; good/strong cry =2. |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}