AI Skill Hub 强烈推荐:Unraid MCP工具 是一款优质的MCP工具。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
通过GraphQL API查询、监控和管理Unraid服务器
Unraid MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
通过GraphQL API查询、监控和管理Unraid服务器
Unraid MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/jmagar/unraid-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"unraid-mcp--": {
"command": "npx",
"args": ["-y", "unraid-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Unraid MCP工具 执行以下任务... Claude: [自动调用 Unraid MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"unraid_mcp__": {
"command": "npx",
"args": ["-y", "unraid-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
A monorepo of Unraid tooling: two MCP servers (Python and Rust) and three Unraid OS plugins, plus the Claude/Codex agent integrations that surface them.
Repo name. This repo was renamedunraid-mcp→unraidon 2026-07-27, and the former standalonerunraidandincus-unraidrepos were merged in here. The old GitHub name still redirects, so existing plugin install/update URLs keep working. The PyPI package, the container image, the Claude plugin, and the Unraid.plgare all still namedunraid-mcp— only the repo changed.
/plugin marketplace add dinglebear-ai/unraid
/plugin install unraid-mcp@unraid-mcp # Python server
/plugin install runraid@unraid-mcp # Rust server
The @unraid-mcp suffix is the marketplace name declared in .claude-plugin/marketplace.json, not the repo name — it stays unraid-mcp even though the repo is now dinglebear-ai/unraid.
Both plugins are published from a single repo. Claude reads .claude-plugin/marketplace.json; Codex reads .agents/plugins/marketplace.json. meta-ci.yml asserts the two list the same plugin set, so they cannot drift.
marketplace add accepts the owner/repo shorthand (or a full git URL / local path). After install, Claude Code prompts for the connection settings (the plugin's userConfig).
The Python server is the flagship. Full documentation — installation, Claude Code / Codex / Gemini setup, configuration, authentication, guardrails, and the tool surface — lives in unraid-py/README.md and unraid-py/docs/. It publishes to PyPI as unraid-mcp (import package unraid_mcp) and launches with uvx unraid-mcp.
cd unraid-rs && cargo build --release # → target/release/runraid
runraid setup plugin-hook # writes ~/.unraid/.env
runraid array # CLI
runraid serve mcp # MCP over HTTP on :40010
| Env var | Purpose |
|---|---|
UNRAID_API_URL | Unraid GraphQL endpoint (required) |
UNRAID_API_KEY | x-api-key for the Unraid API (required) |
UNRAID_API_SKIP_TLS_VERIFY | Accept a self-signed Unraid cert (default false) |
UNRAID_RMCP_HOST / UNRAID_RMCP_PORT | MCP bind address (default 0.0.0.0:40010) |
UNRAID_RMCP_TOKEN | Static bearer token for /mcp |
UNRAID_RMCP_AUTH_MODE | bearer (default) or oauth |
Full list and the OAuth variables: unraid-rs/CLAUDE.md.
Not read-only. The Rust server exposes both queries and mutations. Read actions need the unraid:read scope; mutating actions (VM and Docker lifecycle, array start/stop, notification writes) need unraid:admin.
| Path | What it is | Toolchain | Build / test |
|---|---|---|---|
[unraid-py/](unraid-py/) | **unraid-mcp** — Python MCP server (GraphQL), the flagship. Published to PyPI as unraid-mcp. | Python / uv / hatchling | cd unraid-py && uv run pytest && uv build --wheel |
[unraid-rs/](unraid-rs/) | **runraid** — Rust MCP server + CLI (single static binary). Crate unraid-rmcp on crates.io, plus a legacy npm wrapper of the same name. | Rust / cargo | cd unraid-rs && cargo fmt --check && cargo clippy --all-targets --features test-support -- -D warnings && cargo test |
[plugins/mcp/](plugins/mcp/) | Unraid OS plugin that ships the Rust runraid MCP server onto an Unraid box. | shell .plg + Rust + Vue | bash plugins/mcp/scripts/build-txz.sh <ver> <runraid-binary> |
[plugins/incus/](plugins/incus/) | Unraid OS plugin running Incus system containers ("dev containers") firewalled off the LAN. Includes a NestJS/GraphQL unraid-api backend. | shell .plg + NestJS/Vue | cd plugins/incus && ./scripts/verify-classic-package.sh && ./tests/classic-contract.sh |
[plugins/codex/](plugins/codex/) | Unraid OS plugin embedding a Codex chathead app-server. | shell .plg + React | cd plugins/codex && ./tests/contract.sh |
[agents/unraid-py/](agents/unraid-py/) | Claude Code / Codex plugin (name: unraid-mcp) for the Python server. | — | — |
[agents/unraid-rs/](agents/unraid-rs/) | Claude Code / Codex plugin (name: runraid) for the Rust server. | — | — |
The agent plugins ship no Claude Code hooks, and none are needed: both .mcp.json files map your plugin settings into the server environment directly via ${user_config.*}. agents/unraid-rs wires 10 keys (endpoint, API key, TLS skip, bearer token, four OAuth vars); agents/unraid-py wires UNRAID_API_URL and UNRAID_API_KEY. Set them in plugin settings and the server picks them up on next launch.
Optional, for non-plugin installs (systemd, Docker) that want ~/.unraid/.env written to disk:
runraid setup plugin-hook # or: npx -y @dinglebear/unraid setup plugin-hook
unraid-mcp 是一个基于 GraphQL 的 MCP server,专为 Unraid 系统设计。它通过 HTTP 和 WebSocket 协议将 MCP tool 调用转换为 Unraid GraphQL 的查询(Queries)与变更(Mutations)。该服务器提供统一的 `unraid` 工具接口,通过 `action` 和 `subaction` 参数进行路由,不仅支持系统巡检、管理操作及破坏性操作,还能利用 WebSocket 订阅功能实现实时遥测数据的流式传输。
本项目推荐使用 Docker 进行部署。您可以通过运行 `docker compose up -d` 命令快速启动服务。部署完成后,该服务将作为一个 MCP server 运行,为您的 AI 助手提供对 Unraid 系统的控制能力。
在集成 Claude 等支持 MCP 的客户端后,您可以通过 Python 风格的函数调用来管理 Unraid。例如,使用 `unraid(action="docker", subaction="list")` 列出容器,或使用 `unraid(action="docker", subaction="stop", container_id="plex")` 来停止特定的 Docker 容器。所有操作均通过统一的工具入口进行分发。
在使用前,请务必根据 `.env.example` 创建 `.env` 配置文件(可运行 `just setup` 自动完成)。必须配置 `UNRAID_API_URL`(Unraid GraphQL 端点)和 `UNRAID_API_KEY`(在 Unraid 设置中生成的 API 密钥)。此外,可以通过 `UNRAID_MCP_TRANSPORT` 指定传输协议,支持 `streamable-http`、`stdio` 或已弃用的 `sse`。
该工具的 API 接口通过 `action` 和 `subaction` 参数进行功能路由。对于涉及破坏性操作(如删除或重启)的 subaction,包含一个 `confirm` 布尔参数以确保安全。其他参数如 `device_id`、`disk_id` 或 `correct` 会根据具体的 GraphQL 路径(如 `system/ups_device` 或 `array/parity_start`)进行动态传递。
本项目提供了针对特定任务的自动化工作流示例,例如校验校验(Parity check)流程。开发者可以结合 `array/parity_status` 检查状态,并使用 `array/parity_start` 启动校验任务。配合 `live/parity_progress` 订阅功能,可以实时监控校验进度,实现高度自动化的 Unraid 维护任务。
高质量的Unraid服务器管理工具
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,Unraid MCP工具 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | unraid-mcp |
| 原始描述 | 开源MCP工具:Query, monitor, and manage Unraid servers via GraphQL API through MCP tools. Sup。⭐81 · Python |
| Topics | mcpunraidgraphqlpython |
| GitHub | https://github.com/jmagar/unraid-mcp |
| License | MIT |
| 语言 | Python |
收录时间:2026-06-19 · 更新时间:2026-06-20 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端