Unraid管理工具 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
Unraid管理工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Unraid管理工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/ruaan-deysel/unraid-management-agent
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"unraid----": {
"command": "npx",
"args": ["-y", "unraid-management-agent"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Unraid管理工具 执行以下任务... Claude: [自动调用 Unraid管理工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"unraid____": {
"command": "npx",
"args": ["-y", "unraid-management-agent"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Important: The Unraid Management Agent has NO external plugin dependencies. It collects data directly from system sources.
For detailed information, see:
make deps
make deps
```bash
make release
curl -X POST http://localhost:8043/api/v1/docker/nginx/start
```bash
make local
make clean ```
./scripts/setup-pre-commit.sh
pip install pre-commit make pre-commit-install
Pre-commit will automatically run checks before each commit. See [docs/development/code-quality.md](docs/development/code-quality.md) for detailed documentation.
#### Available Commands
bash make pre-commit-run # Run all pre-commit checks make lint # Run golangci-lint only make security-check # Run security scans make test-coverage # Run tests with coverage ```
```bash
This plugin has been developed and tested on the following configuration:
Note: This configuration represents the primary development and testing environment. Your mileage may vary on different hardware setups.
Configure the plugin through the Unraid web UI:
For automation or headless setups, you can edit the config file directly:
/boot/config/plugins/unraid-management-agent/config.cfg
Changes require a service restart:
/usr/local/emhttp/plugins/unraid-management-agent/scripts/stop
/usr/local/emhttp/plugins/unraid-management-agent/scripts/start
This plugin can coexist with the official Unraid API. They operate independently and do not conflict with each other. You can use both simultaneously if your use case requires it.
For information about the official Unraid GraphQL API, please refer to:
---
For optimal performance, collectors use native Go libraries instead of shell commands:
| Component | Library | Description |
|---|---|---|
| **Docker** | github.com/moby/moby/client | Docker Engine SDK for container data |
| **VMs** | github.com/digitalocean/go-libvirt | Native libvirt bindings for VM data |
| **System** | Direct /proc, /sys access | Kernel interfaces for metrics |
Base URL: http://localhost:8043/api/v1
GET /health - Health checkGET /system - System informationGET /array - Array statusGET /disks - List all disksGET /disks/{id} - Get specific disk infoGET /network - Network interface listGET /shares - List user sharesGET /docker - List Docker containersGET /docker/{id} - Get container detailsGET /vm - List virtual machinesGET /vm/{id} - Get VM detailsGET /ups - UPS statusGET /gpu - GPU metricsGET /logs - List log files or get log contentGET /logs/{filename} - Get specific log file by nameGET /settings/disk-thresholds - Global disk temperature warning/critical thresholdsGET /settings/mover - Mover schedule, thresholds, and running statusGET /settings/services - Docker and VM Manager enabled/disabled statusGET /settings/network-services - Network services status (SMB, NFS, FTP, SSH, VPN, etc.)GET /array/parity-check/schedule - Parity check schedule configurationGET /plugins - List installed plugins with versions and update statusGET /updates - OS and plugin update availabilityGET /system/flash - USB flash boot drive health statisticsPOST /docker/{id}/start - Start containerPOST /docker/{id}/stop - Stop containerPOST /docker/{id}/restart - Restart containerPOST /docker/{id}/pause - Pause containerPOST /docker/{id}/unpause - Unpause containerPOST /vm/{id}/start - Start VMPOST /vm/{id}/stop - Stop VMPOST /vm/{id}/restart - Restart VMPOST /vm/{id}/pause - Pause VMPOST /vm/{id}/resume - Resume VMPOST /vm/{id}/hibernate - Hibernate VMPOST /vm/{id}/force-stop - Force stop VMcurl http://localhost:8043/api/v1/network
[
{
"name": "eth0",
"mac_address": "00:11:22:33:44:55",
"ip_address": "192.168.1.100",
"speed_mbps": 1000,
"state": "up",
"bytes_received": 1234567890,
"bytes_sent": 987654321,
"packets_received": 5000000,
"packets_sent": 4500000,
"errors_received": 0,
"errors_sent": 0,
"timestamp": "2025-10-02T08:00:00Z"
}
]
This is a community-developed third-party plugin and is NOT an official Unraid product.
You might choose this plugin if you:
Data collectors run at configurable intervals (defaults shown):
Coordinates the entire application lifecycle:
make package ```
Dev Containers: Reopen in Container.ansible/ directory).onCreateCommand installs tools, updateContentCommand refreshes deps, postCreateCommand sets up pre-commit hooks.make test to verify after attach.该项目提供了一个开源的MCP工具,通过REST API和WebS管理Unraid系统,支持Prometheus和Swagger,语言为Go,虽然star数较少,但项目结构清晰,代码质量较高,值得关注。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,Unraid管理工具 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | unraid-management-agent |
| 原始描述 | 开源MCP工具:Go-based Unraid plugin monitor and control your Unraid system via REST API, WebS。⭐30 · Go |
| Topics | mcpmqttprometheusrest-apiswaggergo |
| GitHub | https://github.com/ruaan-deysel/unraid-management-agent |
| License | MIT |
| 语言 | Go |
收录时间:2026-05-25 · 更新时间:2026-05-25 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端