Skip to content
VS Code

Unraid MCP for VS Code

ai.dinglebear/unraid-mcp

MCP server for Unraid API — provides tools to interact with an Unraid server's GraphQL API.

client:VS Code transport:stdio runtime:pypi

Install Unraid MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "unraid-api-url",
      "description": "UNRAID_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unraid-api-key",
      "description": "UNRAID_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "unraid-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "unraid-mcp"
      ],
      "env": {
        "UNRAID_API_URL": "${input:unraid-api-url}",
        "UNRAID_API_KEY": "${input:unraid-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Unraid MCP in other clients