healthcare-mcp-public vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
healthcare-mcp-public by Cicatriiz | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 115 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | healthcareAI / LLM 工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 9 个月前 | 本月 |
healthcare-mcp-public · 概述
Healthcare MCP Server 为 AI 助手提供权威医疗数据访问,包括 FDA 药品、PubMed、临床试验和医疗计算器。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
healthcare-mcp-public · 使用场景
- 医疗专业人士研究药品信息和临床试验
- AI 助手为患者提供循证健康信息
- 需要与医疗术语数据库集成的医疗应用程序
- 研究人员从多个来源搜索医学文献和预印本
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
healthcare-mcp-public · 安装
安装选项
1. DXT 扩展(推荐)
- 从此仓库下载
healthcare-mcp.dxt - 用兼容的 MCP 客户端(如 Claude Desktop)打开
- 按照安装提示操作
2. 通过 Smithery 安装
npx -y @smithery/cli install @Cicatriiz/healthcare-mcp-public --client claude3. npm 安装
npm install healthcare-mcp
npx healthcare-mcp4. 手动安装
git clone https://github.com/Cicatriiz/healthcare-mcp-public.git
cd healthcare-mcp-public/server
npm install
npm startClaude Desktop 配置
添加到 Claude Desktop 的 config.json:
{
"mcpServers": {
"healthcare": {
"command": "npx",
"args": ["healthcare-mcp"]
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。