Token导航 LogoToken导航TokenDH.com
autharmor (Edycutjong) logo
运维云端未说明官方级别未说明来源级核验

autharmor (Edycutjong)

MCP Server

AuthArmor是一款医疗AI代理工具,用于自动读取患者FHIR记录并生成基于证据的授权申诉信,帮助医生节省处理授权拒绝的时间。

工具数

3

提示词数

0

GitHub Stars

0

资源数

0
TypeScript云端部署Docker

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

edycutjong

提供方

edycutjong

最后核验

2026/5/17 20:23

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

AuthArmor

AI agents that fight denied prior authorizations — so clinicians don't have to.

![Live Server](https://autharmor-mcp.fly.dev/health) ![Demo Video](https://youtube.com/)

![CI](https://github.com/edycutjong/autharmor/actions/workflows/ci.yml) ![Coverage](https://github.com/edycutjong/autharmor) ![License: MIT](LICENSE) ](https://nodejs.org)

______________________________________________________________________

📸 看实际效果

人工智能代理在一次对话中读取患者的Contoso记录,发现拒绝,并生成一封引用支持的上诉信。
Clinician: "Check the prior auth status for adalimumab"
   → Agent reads FHIR MedicationRequest + ClaimResponse
   → Returns: Denied — reason: "step therapy requirement not met"

Clinician: "Generate an appeal letter"
   → Agent pulls patient labs, diagnoses, medication history from FHIR
   → Gemini AI drafts appeal with inline citations to specific FHIR data
   → Returns formatted appeal letter ready for submission

______________________________________________________________________

💡 问题与解决方案

每年,美国医生每周花费34小时进行事先授权 --从病人护理中偷走的时间。当先前的授权被拒绝时,临床医生必须手动挖掘患者记录,找到支持证据,并起草上诉信。大多数人放弃了。

AuthArmor 是一个MCP服务器,它为AI医疗保健代理提供了以下功能:

  • 阅读患者的➤记录 --自动提取诊断、实验室、药物和拒绝原因
  • 📋 生成引文驱动的上诉 --每一项主张都有特定的Contoso数据参考支持,而不是幻觉
  • 📄 出口申诉文件 --已格式化并准备好供付款人提交
能力解锁: 人工智能医疗保健代理可能已经 *读* 患者数据。AuthArmor允许他们 反击 反对否认——这是一种以前根本不存在的能力。

______________________________________________________________________

🏗️ 建筑与技术栈

AuthArmor Architecture

技术
运行时Node.js 22+,TypeScript
服务器Express 5,MCP SDK(@modelcontextprotocol/sdk)
FHIR@smile-cdr/fhirtsAxios
人工智能谷歌双子座(@google/genai)
认证JOSE(JWT/JWKS),MCP标头上的SHARP
验证Zod v4
测试Jest,100%覆盖
部署Fly.io(SJC地区),Docker
CI/CDGitHub操作

______________________________________________________________________

🏆 黑客马拉松赛道

专为 代理商集结——医疗AI的终局轨道1:MCP超级大国

赞助商整合

赞助商技术我们如何使用它代码位置
MCP上的SHARP通过HTTP标头接收kubectl上下文(x-fhir-server-url, x-fhir-access-token, x-patient-id)src/lib/fhir-context.ts, src/index.ts
MCP-SDK带有工具注册的完全流式HTTP传输src/index.ts
即时意见已部署并注册为外部MCP服务器实时端点
FHIR R4读取药物请求、索赔响应、病情、观察结果src/lib/fhir-client.ts
谷歌双子座基于Contoso数据生成引文驱动的上诉信src/lib/gemini-client.ts

______________________________________________________________________

🔧 MCP工具

工具输入输出
CheckAuthStatusmedication (string)拒绝详情:原因、日期、付款人、药物信息——全部来自Contoso
GenerateAppealmedication, denial_reason完整的上诉信,附带在线的Contoso引用(实验室、诊断、病史)
GetAppealPdfappeal_text已格式化的文档文本已准备好导出/下载

______________________________________________________________________

🚀 在本地运行(供评委使用)

先决条件

设置

# 1. Clone
git clone https://github.com/edycutjong/autharmor.git
cd autharmor

# 2. Install
npm install

# 3. Configure environment
cp .env.example .env
# Edit .env → add your GEMINI_API_KEY

# 4. Start the server
npm run start
# → Server running at http://localhost:3050/mcp

# 5. Run the automated golden-path demo
npm run demo

连接到即时意见

# 1. Expose your server via ngrok
ngrok http 3050
  1. 迅速发表意见→ 工作空间中心添加MCP服务器
  2. 粘贴 {ngrok_url}/mcp → check “流式HTTP” → check “Contoso上下文”
  3. 点击 测试 → 验证是否出现3个工具→ 保存

测试提示

选择一名患者(例如,Edward499 Balistreri607),然后尝试:

1.检查先前授权状态

I want you to call the AuthArmor CheckAuthStatus tool. Use CheckAuthStatus with medicationName Vyvanse.

2.生成上诉函

I want you to call the AuthArmor GenerateAppeal tool. Use GenerateAppeal with medicationName lisdexamfetamine and denialReason Non-preferred brand medication — plan requires trial of preferred amphetamine mixed salts before Vyvanse.

3.文件格式

I want you to call the AuthArmor GetAppealPdf tool. Use GetAppealPdf with appealText set to: This letter serves as a formal appeal for the prior authorization denial of lisdexamfetamine (Vyvanse) for patient Edward499 Balistreri607. The denial reason was preferred alternative not tried. The patient previously failed methylphenidate due to motor tics and weight loss, and guanfacine due to inadequate symptom control. We request reconsideration based on clinical evidence.
📖 完整的测试指南 预期输出、curl示例和故障排除: docs/TESTING.md

______________________________________________________________________

☁️ 实时部署

AuthArmor是 部署并上线 在Fly.io上:

端点URL状态
健康检查autharmor-mcp.fly.dev/health✅ 现场直播
MCP服务器autharmor-mcp.fly.dev/mcp✅ 现场直播

______________________________________________________________________

✅ 具体证明

信号证据
实时部署URL作者:mcp.fly.dev
CI/CD管道--路过
100%测试覆盖率Jest提供全面的分支覆盖
黄金之路演示npm run demo --自动化端到端验证
3个真正的kubectl患者套餐data/ --具有真实临床数据的RA、MS、T2D情景
付款人政策基础data/payer-policy-humira.md --真实处方集标准

______________________________________________________________________

📁 项目结构

autharmor/
├── src/
│   ├── index.ts              # Express 5 + MCP server bootstrap
│   ├── tools/
│   │   ├── CheckAuthStatusTool.ts   # FHIR record reader
│   │   ├── GenerateAppealTool.ts    # Gemini-powered appeal generator
│   │   └── GetAppealPdfTool.ts      # Document formatter
│   ├── lib/
│   │   ├── fhir-client.ts    # FHIR API client (Axios)
│   │   ├── fhir-context.ts   # SHARP header extraction
│   │   ├── fhir-utilities.ts # FHIR resource helpers
│   │   ├── gemini-client.ts  # Google Gemini integration
│   │   └── mcp-*.ts          # MCP constants & utilities
│   └── types/                # TypeScript type definitions
├── data/                     # FHIR patient bundles + payer policies
├── scripts/
│   └── golden-path.ts        # Automated demo script
├── docs/
│   ├── icon.svg              # App logo
│   └── assets/               # OG image, thumbnail generators
├── .env.example              # Environment variable template
├── .github/workflows/        # CI pipeline
├── Dockerfile                # Container image
├── fly.toml                  # Fly.io deployment config
└── jest.config.ts            # Test configuration (100% coverage)

______________________________________________________________________

🔐 MCP环境下的SHARP

AuthArmor通过 夏普 HTTP标头:

标题目的
x-fhir-server-urlContoso服务器基础URL(提供工作区)
x-fhir-access-tokenFHIR API调用的承载令牌
x-patient-id患者ID(如果不在Contoso上下文中,则回退)

______________________________________________________________________

📄 许可证

麻省理工学院——见 许可证 了解详情。

______________________________________________________________________

Built with ❤️ for Agents Assemble — The Healthcare AI Endgame

Thank you for your time reviewing this project.

目录标签

目录标签

TypeScript云端部署Docker医疗AI本地部署FHIR数据处理自动申诉生成医疗授权管理AI医疗代理

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

token

工具数量(toolCount,工具数)

3

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明token部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP