unraid-mcp-server
Provides tools for managing Unraid server, including Docker containers, user shares, array disks, and system processes through privileged access to host system calls and devices.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@unraid-mcp-serverShow me all Docker containers and their statuses"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Unraid MCP Server Deployment Configuration
This file contains the docker run command or docker-compose configuration needed to deploy the MCP server on an Unraid host.
Prerequisites
The host must have Docker installed (standard for Unraid).
The container must run in privileged mode to interact with host system calls and devices.
Related MCP server: Homelab MCP Server
Docker Run Command
docker run -d \
--name unraid-mcp-server \
--privileged \
--restart unless-stopped \
-p 8000:8000 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /usr/bin:/usr/bin \
-v /usr/sbin:/usr/sbin \
-v /mnt:/mnt \
-v /proc:/proc \
-v /sys:/sys \
-v $(pwd)/.env:/app/.env \
unraid-mcp-server:latestVolume Mappings Explained
Host Path | Container Path | Purpose |
|
| Allows managing host Docker containers. |
|
| Provides access to Unraid management binaries. |
|
| Provides access to administrative host binaries. |
|
| Access to the Unraid user shares and array disks. |
|
| Access to kernel/process information. |
|
| Access to hardware/kernel sysfs. |
|
| Passes environment variables from the host. |
Docker Compose Configuration
services:
mcp-server:
build: .
container_name: unraid-mcp-server
privileged: true
restart: unless-stopped
ports:
- "8000:8000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /usr/bin:/usr/bin
- /usr/sbin:/usr/sbin
- /mnt:/mnt
- /proc:/proc
- /sys:/sys
- ./.env:/app/.envThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CrouchingMuppet/unraid-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server