a207-nutrition-assessment-mcp
This server provides MCP tools for comprehensive pediatric CKD nutrition assessment based on PRNT 2020 guidelines. You can:
Calculate daily energy and protein targets (
calc_prnt_targets) using age/sex-segmented calculations with adjustments for CKD stage, dialysis mode (peritoneal/hemodialysis), vegetarian diet (lacto-ovo/vegan multipliers), growth status (failure/overweight/normal), edema-corrected ideal body weight, and peritoneal dialysis glucose energy deduction. Schofield cross-validation is included.Assess dietary intake vs. PRNT targets (
assess_intake_vs_target): Compare a patient's 3-day average intake to targets, returning energy/protein achievement rates, nutritional gaps, and PEW risk, with same edema/glucose adjustments.Manage food diaries: Insert or update entries (
upsert_food_diary, restricted to parent_assistant/child_companion roles) and retrieve aggregated 3-day summaries (get_food_diary_summary, read-only for all).Screen for Protein-Energy Wasting (PEW) risk (
assess_pew_risk): Independently assess risk (low/medium/high) with rationale, using intake vs. targets and optional serum albumin.Track PEW risk history (
record_pew_risk/get_pew_history): Persist and retrieve PEW risk trends (as per README).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@a207-nutrition-assessment-mcpCalculate PRNT energy and protein targets for a 5yo girl with CKD on PD"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
a207-nutrition-assessment-mcp-nfyy(M3 · 营养评估)
儿童 CKD 营养评估 MCP。对应 PCP 契约 nutrition_assessment 输出位,是 Wave 2 首个交付包。
PRNT 目标唯一权威引擎:M5 的目标计算工具已去重并入本包(Schofield 交叉校验 / 水肿理想体重校正 / 腹透葡萄糖供能扣减),全项目只有一把"尺子"。
权威标尺:PRNT 2020(Shaw V, et al. Pediatr Nephrol 35:519-531)——与用户提供的《PRNT指南:能量与蛋白质需求及营养处方实操》一致。
工具清单
工具 | 类型 | 权限 | 说明 |
| 读 | 全 caller | PRNT 唯一权威引擎。按年龄×性别分段 SDI 计算每日能量/蛋白质目标(含 CKD 分期/透析/素食/生长状态);并吸收 M5 特性: |
| 读 | 全 caller | 对照 PRNT 目标评估 3 日饮食日记均值,给达成率、缺口、PEW 风险 |
| 写 | parent_assistant / child_companion(MX-3) | 写入饮食条目并聚合 |
| 读 | 全 caller | 读取并聚合某患者饮食日记 |
| 读 | 全 caller | 独立 PEW(蛋白质-能量消耗)风险筛查 |
| 读 | 全 caller | 增长 Z 评分(中国卫健委标准,非 WHO)。按 WS/T 423-2022(7 岁以下 体重/身高/BMI 年龄别 SD)+ WS/T 612-2018(7-18 岁身高年龄别)计算 HAZ/WAZ/BAZ:Z=(实测-中位数)/SD,SD 由标准附录给出。HAZ 0-18 岁全覆盖;WAZ/BAZ 仅 <7 岁(7-18 体重/BMI 标准未提供则跳过并 warning)。返回 5 等级 + 营养状况分类,并给 PRNT |
| 写 | 编排层(orchestrator/医生/营养) | PEW 历史落库(ADR-007)。每次 |
| 读 | 全 caller | 读取 PEW 历史(ADR-007)。返回按日期升序的历史点 + 趋势(improving/worsening/stable/no_data),供 M9 报告与 M4 聚合时间线 |
PEW 历史归属(ADR-007):
assess_pew_risk是 M3 的产出,其历史时间线由 M3 拥有并落库(data/pew_history_store.json,按 patient_id 追加);M4 的get_pew_history仅作聚合 facade,从 M3 读取,零跨包 import。详见docs/decisions/ADR-007.md。
Related MCP server: MedCalc MCP Server
关键口径(与 contracts/pcp-schema.json 一致)
能量 kcal、蛋白 g、体重 kg、身高 cm;无跨包调用。
能量初始 = SDI 100%:生长不良取上限、超重取下限、正常取中点。
蛋白质:目标取 SDI 上限;绝对下限取 SDI 下限(绝不可低于);透析额外补充(PD 0.15–0.30 / HD 0.10 g/kg/day)叠加于目标与下限;素食按倍数上调(蛋奶素 1.2 / 纯素 1.3)。
PE 比:理想 7–12%,CKD 可接受 5.3–6.4%(需总蛋白 ≥100% 需求)。
验证
python -m py_compile src/a207_nutrition_assessment_mcp/*.py
python tests/test_tools.py # 83 断言全过运行与部署
本地开发(最快验证)
fastmcp dev src/a207_nutrition_assessment_mcp/server.py无需打包,直接起 stdio 服务,适合本地联调。
发布到 PyPI(与 his / lis / calc / router 完全同流程)
本项目 5 个 MCP 全部发布到 PyPI(维护者 NFYY)。发布后裸 uvx <包名> 即可拉取,
GitHub Codespace / ModelScope 部署同理。报 uvx ... was not found in the package registry
唯一原因就是该版本还没发到 PyPI——把包构建并上传即可,和其他 4 个包一模一样。
命名说明:本包 PyPI 发行名是
a207-nutrition-assessment-mcp-nfyy(带-nfyy后缀), 不是a207-nutrition-assessment-mcp——后者在 PyPI 上已被他人占用(极小概率撞名),故加-nfyy规避。 Python 导入名仍为a207_nutrition_assessment_mcp(不变),仅发行名 / 控制台脚本名带后缀。 其余 4 个包名未被占用,故无后缀。
# 1. 构建 sdist + wheel(产物落 dist/)
python -m build
# 2. 校验产物可上传(应 PASSED)
python -m twine check dist/*
# 3. 上传到 PyPI(需 NFYY 凭据:环境变量 PYPI_API_TOKEN 或 ~/.pypirc)
python -m twine upload dist/*用 uvx 运行(已发布后 —— 与另外 4 个一致)
uvx a207-nutrition-assessment-mcp-nfyy # 裸名,和 his/lis/calc/router 一样
uvx --refresh a207-nutrition-assessment-mcp-nfyy # 强制刷新、重拉最新版本地 / 离线开发(不发布也能跑,仅开发用)
包目录内直接跑:
uvx --from . a207-nutrition-assessment-mcp-nfyy或装成本地工具后裸名可用:
uv tool install --from . a207-nutrition-assessment-mcp-nfyy
GitHub / ModelScope 等远程部署
远程环境用已发布的 PyPI 包最直接(裸 uvx a207-nutrition-assessment-mcp-nfyy);
若想锁定 git 源,可用:
uvx --from "git+https://github.com/<owner>/<repo>.git" a207-nutrition-assessment-mcp-nfyy确保 <repo> 指向本包仓库(根目录含 pyproject.toml),不要指向 A207 大仓根目录。
已知缺口(非阻断)
增长 Z 评分已按中国卫健委标准实现(WS/T 423-2022 + WS/T 612-2018,数据资产
data/growth_ref_cn.json由 PDF 抽取生成)。未采用 WHO 2007(用户判定偏旧)——若未来需 WHO 口径,再补 LMS 参考表。WAZ/BAZ 仅覆盖 7 岁以下:WS/T 423 随附 7 岁以下体重/BMI 年龄别 SD 值;7-18 岁体重/BMI 标准未提供,故 7 岁以上跳过并给出 warning(未编造数据)。
本机未安装 fastmcp,
server.py仅py_compile静态校验,未实跑 stdio 服务。
Available Tools
5 toolsassess_intake_vs_targetA
对照 PRNT 目标评估 3 日饮食日记均值,给出能量/蛋白达成率、缺口与 PEW 风险。diet 需含 avg_energy_kcal/avg_protein_g。
支持水肿校正(is_edema + height_cm)与腹透葡萄糖供能扣减(pd_glucose_kcal_per_day),与 calc_prnt_targets 一致。
| Name | Required | Description | Default |
|---|---|---|---|
| sex | Yes | ||
| diet | Yes | ||
| is_edema | No | ||
| age_years | Yes | ||
| ckd_stage | No | ||
| height_cm | No | ||
| weight_kg | Yes | ||
| dialysis_mode | No | none | |
| growth_status | No | normal | |
| vegetarian_mode | No | mixed | |
| pd_glucose_kcal_per_day | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It explains the computation purpose, required inputs, and optional adjustments, adding value beyond the schema. It does not disclose edge cases or explicit read-only behavior, but for a calculation/assessment tool, the behavior is sufficiently transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with two sentences. The first sentence states the core purpose and outputs; the second adds key input requirements and options. No superfluous words, and it is well-structured for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (11 parameters, nested 'diet' object, output schema), the description is somewhat incomplete. It provides essential input hints and links to calc_prnt_targets, but it does not explain roles of most parameters or the interaction with sibling tools. The output schema likely covers return values, but parameter context is lacking, making it minimally viable rather than complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, so the description must compensate for parameter meaning. It explains the 'diet' subfields (avg_energy_kcal/avg_protein_g) and two optional parameters (is_edema, height_cm, pd_glucose_kcal_per_day) but leaves many required and optional parameters (e.g., age_years, sex, weight_kg, ckd_stage, dialysis_mode, growth_status, vegetarian_mode) unexplained, despite their importance in PRNT target assessment. The partial coverage is insufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: '对照 PRNT 目标评估 3 日饮食日记均值' (assess 3-day diet diary mean against PRNT targets) and specifies outputs like energy/protein achievement rate, gap, and PEW risk. It uses a specific verb and resource, and the mention of '与 calc_prnt_targets 一致' distinguishes it from the sibling tool calc_prnt_targets.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a 3-day diet diary with averaged values is available and PRNT targets are needed. It states required diet fields and lists optional adjustments (edema correction, PD glucose deduction), providing clear context. However, it does not explicitly exclude scenarios or mention alternatives like assess_pew_risk for detailed PEW assessment, so it lacks explicit when-to-use/alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
assess_pew_riskA
独立 PEW(蛋白质-能量消耗)风险筛查:传入 3 日均值与目标,返回 low/medium/high 及依据。
| Name | Required | Description | Default |
|---|---|---|---|
| albumin_g_L | No | ||
| avg_protein_g | Yes | ||
| avg_energy_kcal | Yes | ||
| target_protein_g | Yes | ||
| target_energy_kcal | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the input/output behavior and return format, but does not mention side effects (though unlikely), handling of null albumin, or any algorithmic details beyond the output levels.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that front-loads the purpose and includes all essential information without waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the main required inputs and output, and the existence of an output schema covers return value details. However, it omits the optional albumin parameter and any nuance about the basis for risk levels, leaving a small gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description only broadly mentions '3-day averages and targets' without naming specific parameters or units. The optional albumin_g_L parameter is entirely omitted, leaving it unexplained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as an independent PEW risk screening function, specifying the inputs (3-day averages and targets) and output (low/medium/high with rationale). It distinguishes itself from sibling tools by focusing specifically on PEW risk.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the use case: when PEW risk screening is needed based on 3-day averages vs targets. It provides clear context but does not explicitly mention alternatives or exclusions, such as when to prefer assess_intake_vs_target.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
calc_prnt_targetsA
按 PRNT 2020 计算儿童 CKD 每日能量与蛋白质目标(年龄×性别分段 SDI,含透析加成/素食倍数/生长状态调整)。
移植自 M5 的临床特性:is_edema 启用水肿理想体重校正(BMI-P50 dry weight); pd_glucose_kcal_per_day 提供腹透葡萄糖供能则扣减膳食能量目标(避免超额)。Schofield 交叉校验信息性输出。
| Name | Required | Description | Default |
|---|---|---|---|
| sex | Yes | ||
| is_edema | No | ||
| age_years | Yes | ||
| ckd_stage | No | ||
| height_cm | No | ||
| weight_kg | Yes | ||
| dialysis_mode | No | none | |
| growth_status | No | normal | |
| vegetarian_mode | No | mixed | |
| pd_glucose_kcal_per_day | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does well: it discloses special behaviors like is_edema triggering ideal body weight correction and pd_glucose_kcal_per_day deducting energy targets. It also mentions Schofield cross-check for informational output. However, it stops short of explicitly stating that the tool is read-only or safe, though that is implied by 'calculate'.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, with the main purpose in the first sentence and clinical details in the second. It is efficient but the second sentence is dense with technical terms, which is justified given the complexity. No wasted words, and it is front-loaded with the primary function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 10 parameters, complex clinical logic, and an existing output schema, the description adequately covers the key special cases and adjustments. It does not explain the SDI methodology in depth or potential limitations, but the output schema removes the need to describe return values. The description is sufficiently complete for a calculation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, so the description must compensate. It explains the key non-obvious parameters: is_edema ('启用水肿理想体重校正'), pd_glucose_kcal_per_day ('扣减膳食能量目标'), and refers to dialysis add-ons, vegetarian multiples, and growth status adjustments which map to other parameters. This significantly adds meaning beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: '按 PRNT 2020 计算儿童 CKD 每日能量与蛋白质目标' (calculate daily energy and protein targets for pediatric CKD using PRNT 2020). It specifies the method (age×sex segmented SDI) and adjustments, distinguishing it from siblings like assess_intake_vs_target and assess_pew_risk.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through its purpose (calculating targets for children with CKD) but does not explicitly state when to use this tool versus alternatives. It mentions clinical features but lacks direct references to sibling tools or exclusions for cases where other tools would be more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_food_diary_summaryA
读取并聚合某患者的饮食日记,返回 diet_diary_3d(只读,所有 caller 可读)。
| Name | Required | Description | Default |
|---|---|---|---|
| caller | Yes | ||
| patient_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It clearly discloses a key behavioral trait: the operation is read-only and readable by all callers. This directly communicates safety and lack of side effects, which is valuable. However, it does not elaborate on aggregation behavior or potential edge cases beyond that.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that immediately conveys the action, resource, return, and read-only nature. Every word earns its place with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, and the presence of an output schema likely covers return value details. The description covers the read-only aspect and the aggregation purpose. It could be more complete by naming the parameters or hinting at aggregation logic, but given the simple nature and output schema, it is largely sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate by explaining the parameters. It only indirectly references the patient via '某患者' but does not explain 'caller' or provide any parameter-level detail. The schema itself only lists types without descriptions, leaving the agent with insufficient semantic guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action ('读取并聚合' - read and aggregate) on a specific resource (a patient's food diary) and specifies the return value (diet_diary_3d). It also explicitly marks the tool as read-only, which distinguishes it from the sibling 'upsert_food_diary' that implies writing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies its usage context (reading and aggregating a patient's food diary summary) but does not explicitly state when to use it over alternatives like 'assess_intake_vs_target' or 'calc_prnt_targets'. The read-only hint offers some guidance but no explicit exclusions or when-not-to-use scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upsert_food_diaryB
写入/追加饮食日记条目(MX-3 收口:仅 parent_assistant / child_companion)。条目养分由调用方经 M5 计算后填入。
| Name | Required | Description | Default |
|---|---|---|---|
| caller | Yes | ||
| entries | Yes | ||
| patient_id | Yes | ||
| write_mode | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavioral traits. It does disclose that nutrients are caller-calculated via M5 and that caller scope is restricted. However, it doesn't clarify whether 'upsert' means update or append, nor how write_mode affects behavior, nor permissions or idempotency. Some useful context but incomplete for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the action and follows with a practical constraint. It is appropriately concise with no wasted words. However, domain jargon (MX-3, M5) may be cryptic, and the structure uses a parenthetical which slightly reduces scanability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 4 parameters, no annotations, and low schema coverage, yet the description does not explain write_mode behavior, entry structure, or error/conflict handling. An output schema exists but is not visible; still, the description leaves significant gaps about edge cases and how this tool fits into the larger workflow.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It does add meaning for 'caller' (restricting to parent_assistant/child_companion) and gives hints about 'entries' (nutrient content pre-filled by caller), but patient_id and write_mode are not mentioned. The description only partially compensates for the lack of schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool writes/appends food diary entries ('写入/追加饮食日记条目'), which is a specific verb+resource action. It also distinguishes from sibling tools like get_food_diary_summary and assess_pew_risk, which are read/analysis tools. The caller restriction adds context but doesn't confuse the core purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for writing/adding diary entries and gives a clear caller constraint (only parent_assistant / child_companion), but does not explicitly state when to use this tool versus alternatives like get_food_diary_summary. There is no exclusionary guidance, so usage is implied rather than explicitly contrasted.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a distinct primary role (target calculation, intake assessment, diary write, diary read, PEW screening), but assess_intake_vs_target and assess_pew_risk both address PEW risk, which could cause minor confusion.
Names use a mix of verbs (calc, assess, upsert, get) and two tools share the 'assess' prefix, so there's no single consistent pattern, though the names remain readable and descriptive.
Five tools is well-scoped for a nutrition assessment server, covering core calculations, assessments, and diary management without unnecessary bloat.
The tool set covers the main workflow: target calculation, intake-to-target assessment, diary input/retrieval, and independent PEW risk screening. Minor gaps like a dedicated patient-context tool or diary deletion are not critical for the stated purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Patient, meal plan, prescription, chart and anthropometry management for dietitians.
Patient, prescription, anthropometry, scheduling, chat and food diary management for dietitians.
Practitioner-led nutrition specialist. Access patient care profiles, dietitian notes & logs.
MCP tools for Malawian food search, clinical nutrition calculators, and RAG-backed guidance.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides access to 56 professional medical calculators covering multiple specialties including cardiovascular, renal, hepatic, respiratory, and critical care assessments. Enables healthcare professionals to perform evidence-based calculations with detailed explanations and automatic unit conversions.11Apache 2.0
- AlicenseNot gradedqualityDmaintenanceProvides 59 clinical medical calculators and scoring tools for healthcare professionals and AI assistants, covering renal, cardiovascular, pulmonary, critical care, and other specialties.5MIT
- AlicenseAqualityBmaintenanceThis MCP server generates individualized meal plans for children with chronic kidney disease (CKD) based on KDIGO 2024/PRNT 2020/KRCP 2025 guidelines, incorporating patient age, CKD stage, allergies, dietary culture, and diet diary analysis. It provides deterministic nutrient computations and tools for meal plan generation, food database lookup, and risk analysis.13MIT
- AlicenseAqualityCmaintenanceProvides deterministic parental guidance for children with chronic kidney disease, including food safety checks, lab report interpretation, and nutrient-aware food substitutions based on authoritative guidelines and the Chinese Food Composition Table.12MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ayeyouok/a207-nutrition-assessment-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server