Skip to content
VS Code

Oraclarr for VS Code

io.github.bdog720/oraclarr

Read-only diagnostic MCP server for a self-hosted arr stack (Sonarr, Radarr, Prowlarr & more).

client:VS Code transport:stdio runtime:pypi

Install Oraclarr in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "oraclarr-config",
      "description": "ORACLARR_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "oraclarr": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "oraclarr-mcp"
      ],
      "env": {
        "ORACLARR_CONFIG": "${input:oraclarr-config}"
      }
    }
  }
}

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

Oraclarr in other clients