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 生效
GraphQL-backed MCP server for Unraid. Exposes a unified unraid tool for system inspection, management operations, live telemetry, and destructive actions gated by explicit confirmation.
The server translates MCP tool calls into Unraid GraphQL queries and mutations over HTTP and WebSocket. All operations share a single unraid tool routed by action + subaction. Live telemetry uses WebSocket subscriptions that stream real-time data from the Unraid API.
The server issues queries and mutations against the Unraid GraphQL API. Key query roots:
| Root | Used by |
|---|---|
info | system/overview, system/display, health check |
array | system/array, array/* |
vars | system/network, system/variables |
metrics | system/metrics |
services | system/services |
servers | system/servers, system/network |
registration | system/registration |
online | system/online, health/test_connection |
owner | system/owner |
settings | system/settings |
flash | system/flash |
upsDevices / upsDeviceById | system/ups_devices, system/ups_device |
upsConfiguration | system/ups_config |
parityHistory | array/parity_history |
disk / disks | disk/disk_details, disk/disks |
shares | disk/shares |
logFiles / logFile | disk/log_files, disk/logs |
docker.containers / docker.networks | docker/* |
vms | vm/* |
notifications | notification/* |
apiKeys / apiKey | key/* |
plugins | plugin/list |
rclone | rclone/* |
customization | customization/* |
oidcProviders / oidcConfiguration | oidc/* |
me | user/me |
Subscriptions use graphql-transport-ws over WebSocket (falling back to legacy graphql-ws). The WebSocket URL is derived from UNRAID_API_URL by swapping the scheme (http → ws, https → wss).
docker compose up -d
unraid(action="docker", subaction="list")
unraid(action="docker", subaction="start", container_id="plex")
unraid(action="docker", subaction="stop", container_id="plex")
unraid(action="docker", subaction="restart", container_id="plex")
unraid(action="docker", subaction="details", container_id="plex")
unraid(action="docker", subaction="networks")
Create .env from .env.example:
just setup
| Variable | Required | Default | Description |
|---|---|---|---|
UNRAID_API_URL | Yes | — | GraphQL endpoint URL, e.g. https://tower.local/graphql |
UNRAID_API_KEY | Yes | — | Unraid API key (see below) |
UNRAID_MCP_TRANSPORT | No | streamable-http | Transport: streamable-http, stdio, or sse (deprecated) |
UNRAID_MCP_HOST | No | 0.0.0.0 | Bind address for HTTP transports |
UNRAID_MCP_PORT | No | 6970 | Listen port for HTTP transports |
UNRAID_MCP_BEARER_TOKEN | Conditional | — | Static Bearer token for HTTP transports; auto-generated on first start if unset |
UNRAID_MCP_DISABLE_HTTP_AUTH | No | false | Set true to skip Bearer auth (use behind a reverse proxy that handles auth) |
DOCKER_NETWORK | No | — | External Docker network to join; leave blank for default bridge |
PGID | No | 1000 | Container process GID |
PUID | No | 1000 | Container process UID |
| Parameter | Type | Used by |
|---|---|---|
action | str | all |
subaction | str | all |
confirm | bool (default False) | destructive subactions |
device_id | str | system/ups_device |
disk_id | str | array, disk |
correct | bool | array/parity_start |
slot | int | array/add_disk |
log_path | str | disk/logs |
tail_lines | int (default 100, max 10000) | disk/logs |
remote_name | str | disk/flash_backup |
source_path | str | disk/flash_backup |
destination_path | str | disk/flash_backup |
backup_options | dict | disk/flash_backup |
container_id | str | docker mutations and details |
network_id | str | docker/network_details |
vm_id | str | vm (all except list) |
notification_id | str | notification/archive, mark_unread, delete |
notification_ids | list[str] | notification/archive_many, unarchive_many |
notification_type | str (UNREAD/ARCHIVE) | notification/delete |
importance | str (INFO/WARNING/ALERT) | notification filter and create |
list_type | str (UNREAD/ARCHIVE, default UNREAD) | notification/list |
title | str (≤200) | notification/create |
subject | str (≤500) | notification/create |
description | str (≤2000) | notification/create |
offset | int (default 0) | notification/list |
limit | int (default 20) | notification/list |
key_id | str | key subactions |
name | str | key/create, key/update, rclone |
roles | list[str] | key subactions |
permissions | list[str] | key subactions |
names | list[str] | plugin/add, plugin/remove |
bundled | bool (default False) | plugin/add, plugin/remove |
restart | bool (default True) | plugin/add, plugin/remove |
provider_type | str | rclone/config_form, rclone/create_remote |
config_data | dict | rclone/create_remote |
settings_input | dict | setting/update |
ups_config | dict | setting/configure_ups |
theme_name | str | customization/set_theme |
provider_id | str | oidc/provider |
token | str | oidc/validate_session |
path | str | live/log_tail |
collect_for | float (default 5.0) | live collect-mode subactions |
timeout | float (default 10.0) | live all subactions |
UNRAID_API_KEY.unraid(action="array", subaction="parity_status")
unraid(action="array", subaction="parity_start", correct=True) # correcting pass
unraid(action="array", subaction="parity_start", correct=False) # read-only pass
unraid(action="live", subaction="parity_progress", timeout=15.0)
unraid(action="array", subaction="parity_pause")
unraid(action="array", subaction="parity_resume")
unraid(action="array", subaction="parity_cancel")
unraid(action="array", subaction="parity_history")
These are two separate credentials with different purposes:
UNRAID_API_KEY — authenticates the MCP server to the Unraid GraphQL API. Every GraphQL request carries this key as a header. Obtained from the Unraid web UI.UNRAID_MCP_BEARER_TOKEN — authenticates MCP clients (Claude Code, Claude Desktop, etc.) to this MCP server. Clients must send Authorization: Bearer <token> on every HTTP request. Generate with openssl rand -hex 32 or just gen-token.高质量的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 类型,复制安装指令后粘贴到对应客户端