unraid-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
unraid-mcp by jmagar | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 64 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 可观测性运维基建开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
unraid-mcp · 概述
通过 GraphQL API 管理 Unraid 服务器的全面 MCP 服务器,支持系统信息、Docker、虚拟机、阵列操作和实时遥测。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
unraid-mcp · 使用场景
- 系统管理员通过 AI 助手监控和管理 Unraid 服务器状态和性能
- 自动化常规 Unraid 任务,如奇偶校验、Docker 容器管理和插件更新
- 将 Unraid 管理集成到更广泛的 AI 驱动的自动化工作流程中
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
unraid-mcp · 安装
安装
PyPI 包
pip install unraid-mcpDocker
docker pull ghcr.io/jmagar/unraid-mcp:latestClaude Desktop
添加到 Claude Desktop 配置中:
{
"mcpServers": {
"unraid": {
"command": "python",
"args": ["-m", "unraid_mcp"],
"env": {
"UNRAID_API_URL": "http://your-unraid-server",
"UNRAID_API_KEY": "your-api-key"
}
}
}
}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 中安装。