arr-mcp for VS Code
io.github.bardesss/arr-mcp
One server, 38 tools, the whole media stack: Radarr, Sonarr, Prowlarr, Bazarr, Jellyfin, Seerr
client:VS Code
transport:stdio
runtime:oci
Install arr-mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "puid",
"description": "PUID",
"password": true
},
{
"type": "promptString",
"id": "pgid",
"description": "PGID",
"password": true
},
{
"type": "promptString",
"id": "tz",
"description": "TZ",
"password": true
}
],
"servers": {
"arr-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/bardesss/arr-mcp:1.33.1"
],
"env": {
"PUID": "${input:puid}",
"PGID": "${input:pgid}",
"TZ": "${input:tz}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs