unraid-mcp vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
unraid-mcp by jmagar | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 64 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 75 |
| 官方 | — | ✓ |
| 分类 | 可观测性运维基建开发者工具 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
unraid-mcp · 概述
通过 GraphQL API 管理 Unraid 服务器的全面 MCP 服务器,支持系统信息、Docker、虚拟机、阵列操作和实时遥测。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
unraid-mcp · 使用场景
- 系统管理员通过 AI 助手监控和管理 Unraid 服务器状态和性能
- 自动化常规 Unraid 任务,如奇偶校验、Docker 容器管理和插件更新
- 将 Unraid 管理集成到更广泛的 AI 驱动的自动化工作流程中
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
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"
}
}
}
}sequentialthinking · 安装
安装
**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: 使用安装按钮或手动配置:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}