clinicaltrialsgov-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
clinicaltrialsgov-mcp-server by cyanheads | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 71 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | healthcare开发者工具AI / LLM 工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
clinicaltrialsgov-mcp-server · 概述
MCP 服务器提供 7 个工具,用于搜索、检索和匹配 ClinicalTrials.gov API 中的临床试验。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
clinicaltrialsgov-mcp-server · 使用场景
- 医学研究人员可以根据特定疾病或干预措施搜索相关临床试验
- 医疗保健提供者可以将患者人口统计信息和疾病与正在招募的试验相匹配
- 数据分析师可以使用计数和搜索工具探索临床试验景观,以获取研究见解
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
clinicaltrialsgov-mcp-server · 安装
安装
公共托管实例
公共实例可在 https://clinicaltrials.caseyjhand.com/mcp 获得,无需安装。通过 Streamable HTTP 将任何 MCP 客户端指向它:
{
"mcpServers": {
"clinicaltrialsgov-mcp-server": {
"type": "streamable-http",
"url": "https://clinicaltrials.caseyjhand.com/mcp"
}
}
}自托管 / 本地
添加到您的 MCP 客户端配置(例如 claude_desktop_config.json):
{
"mcpServers": {
"clinicaltrialsgov-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["clinicaltrialsgov-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio"
}
}
}
}先决条件
- [Bun v1.3.0](https://bun.sh/) 或更高版本(或 Node.js >= 24.0.0)
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 中安装。