Skip to content
VS Code

Unraid RMCP for VS Code

ai.dinglebear/unraid

Rust MCP server and CLI for Unraid GraphQL operations across NAS, Docker, VM, and storage workflows.

client:VS Code transport:stdio runtime:npm

Install Unraid RMCP 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
    },
    {
      "type": "promptString",
      "id": "unraid-rmcp-version",
      "description": "UNRAID_RMCP_VERSION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unraid-rmcp-repo",
      "description": "UNRAID_RMCP_REPO",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unraid-rmcp-release-base-url",
      "description": "UNRAID_RMCP_RELEASE_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rust-log",
      "description": "RUST_LOG",
      "password": true
    }
  ],
  "servers": {
    "unraid": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dinglebear/unraid"
      ],
      "env": {
        "UNRAID_API_URL": "${input:unraid-api-url}",
        "UNRAID_API_KEY": "${input:unraid-api-key}",
        "UNRAID_RMCP_VERSION": "${input:unraid-rmcp-version}",
        "UNRAID_RMCP_REPO": "${input:unraid-rmcp-repo}",
        "UNRAID_RMCP_RELEASE_BASE_URL": "${input:unraid-rmcp-release-base-url}",
        "RUST_LOG": "${input:rust-log}"
      }
    }
  }
}

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

Unraid RMCP in other clients