What is the Unraid MCP MCP server?
MCP server for Unraid API — provides tools to interact with an Unraid server's GraphQL API.
How to install Unraid MCP
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
UNRAID_API_URLrequiredBase URL of your Unraid server, e.g. http://192.168.1.100.
UNRAID_API_KEYrequiredsecretUnraid API key for authentication.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"unraid-mcp": {
"command": "uvx",
"args": [
"unraid-mcp"
],
"env": {
"UNRAID_API_URL": "<YOUR_UNRAID_API_URL>",
"UNRAID_API_KEY": "<YOUR_UNRAID_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"unraid-mcp": {
"command": "uvx",
"args": [
"unraid-mcp"
],
"env": {
"UNRAID_API_URL": "<YOUR_UNRAID_API_URL>",
"UNRAID_API_KEY": "<YOUR_UNRAID_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"unraid-mcp": {
"command": "uvx",
"args": [
"unraid-mcp"
],
"env": {
"UNRAID_API_URL": "<YOUR_UNRAID_API_URL>",
"UNRAID_API_KEY": "<YOUR_UNRAID_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"unraid-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"unraid-mcp"
],
"env": {
"UNRAID_API_URL": "<YOUR_UNRAID_API_URL>",
"UNRAID_API_KEY": "<YOUR_UNRAID_API_KEY>"
}
}
}
}Claude Code
claude mcp add unraid-mcp --env UNRAID_API_URL=<YOUR_UNRAID_API_URL> --env UNRAID_API_KEY=<YOUR_UNRAID_API_KEY> -- uvx unraid-mcpRelated MCP servers
MCP server for self-hosted Gotify push notifications and message management.
View repository →