PluginBench
MCP Server
Active
AGPL-3.0

Yarr MCP MCP Server

ai.dinglebear/yarr

What is the Yarr MCP MCP server?

Self-hosted media fleet operations across Sonarr, Radarr, Plex, and related apps over MCP and CLI.

How to install Yarr MCP

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • YARR_SONARR_URL

    Optional Sonarr base URL.

  • YARR_SONARR_API_KEY
    secret

    Optional Sonarr API key.

  • YARR_RADARR_URL

    Optional Radarr base URL.

  • YARR_RADARR_API_KEY
    secret

    Optional Radarr API key.

  • YARR_PLEX_URL

    Optional Plex base URL.

  • YARR_PLEX_TOKEN
    secret

    Optional Plex token.

  • YARR_VERSION

    Optional GitHub release tag override for the downloaded Yarr binary.

  • YARR_REPO

    Optional GitHub owner/repo override for release asset downloads.

  • YARR_RELEASE_BASE_URL

    Optional release download base URL override.

  • RUST_LOG

    Tracing filter for Yarr logs.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "yarr": {
      "command": "npx",
      "args": [
        "-y",
        "@dinglebear/yarr",
        "mcp"
      ],
      "env": {
        "YARR_SONARR_URL": "<YOUR_YARR_SONARR_URL>",
        "YARR_SONARR_API_KEY": "<YOUR_YARR_SONARR_API_KEY>",
        "YARR_RADARR_URL": "<YOUR_YARR_RADARR_URL>",
        "YARR_RADARR_API_KEY": "<YOUR_YARR_RADARR_API_KEY>",
        "YARR_PLEX_URL": "<YOUR_YARR_PLEX_URL>",
        "YARR_PLEX_TOKEN": "<YOUR_YARR_PLEX_TOKEN>",
        "YARR_VERSION": "<YOUR_YARR_VERSION>",
        "YARR_REPO": "<YOUR_YARR_REPO>",
        "YARR_RELEASE_BASE_URL": "<YOUR_YARR_RELEASE_BASE_URL>",
        "RUST_LOG": "<YOUR_RUST_LOG>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "yarr": {
      "command": "npx",
      "args": [
        "-y",
        "@dinglebear/yarr",
        "mcp"
      ],
      "env": {
        "YARR_SONARR_URL": "<YOUR_YARR_SONARR_URL>",
        "YARR_SONARR_API_KEY": "<YOUR_YARR_SONARR_API_KEY>",
        "YARR_RADARR_URL": "<YOUR_YARR_RADARR_URL>",
        "YARR_RADARR_API_KEY": "<YOUR_YARR_RADARR_API_KEY>",
        "YARR_PLEX_URL": "<YOUR_YARR_PLEX_URL>",
        "YARR_PLEX_TOKEN": "<YOUR_YARR_PLEX_TOKEN>",
        "YARR_VERSION": "<YOUR_YARR_VERSION>",
        "YARR_REPO": "<YOUR_YARR_REPO>",
        "YARR_RELEASE_BASE_URL": "<YOUR_YARR_RELEASE_BASE_URL>",
        "RUST_LOG": "<YOUR_RUST_LOG>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "yarr": {
      "command": "npx",
      "args": [
        "-y",
        "@dinglebear/yarr",
        "mcp"
      ],
      "env": {
        "YARR_SONARR_URL": "<YOUR_YARR_SONARR_URL>",
        "YARR_SONARR_API_KEY": "<YOUR_YARR_SONARR_API_KEY>",
        "YARR_RADARR_URL": "<YOUR_YARR_RADARR_URL>",
        "YARR_RADARR_API_KEY": "<YOUR_YARR_RADARR_API_KEY>",
        "YARR_PLEX_URL": "<YOUR_YARR_PLEX_URL>",
        "YARR_PLEX_TOKEN": "<YOUR_YARR_PLEX_TOKEN>",
        "YARR_VERSION": "<YOUR_YARR_VERSION>",
        "YARR_REPO": "<YOUR_YARR_REPO>",
        "YARR_RELEASE_BASE_URL": "<YOUR_YARR_RELEASE_BASE_URL>",
        "RUST_LOG": "<YOUR_RUST_LOG>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "yarr": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dinglebear/yarr",
        "mcp"
      ],
      "env": {
        "YARR_SONARR_URL": "<YOUR_YARR_SONARR_URL>",
        "YARR_SONARR_API_KEY": "<YOUR_YARR_SONARR_API_KEY>",
        "YARR_RADARR_URL": "<YOUR_YARR_RADARR_URL>",
        "YARR_RADARR_API_KEY": "<YOUR_YARR_RADARR_API_KEY>",
        "YARR_PLEX_URL": "<YOUR_YARR_PLEX_URL>",
        "YARR_PLEX_TOKEN": "<YOUR_YARR_PLEX_TOKEN>",
        "YARR_VERSION": "<YOUR_YARR_VERSION>",
        "YARR_REPO": "<YOUR_YARR_REPO>",
        "YARR_RELEASE_BASE_URL": "<YOUR_YARR_RELEASE_BASE_URL>",
        "RUST_LOG": "<YOUR_RUST_LOG>"
      }
    }
  }
}
Claude Code
claude mcp add yarr --env YARR_SONARR_URL=<YOUR_YARR_SONARR_URL> --env YARR_SONARR_API_KEY=<YOUR_YARR_SONARR_API_KEY> --env YARR_RADARR_URL=<YOUR_YARR_RADARR_URL> --env YARR_RADARR_API_KEY=<YOUR_YARR_RADARR_API_KEY> --env YARR_PLEX_URL=<YOUR_YARR_PLEX_URL> --env YARR_PLEX_TOKEN=<YOUR_YARR_PLEX_TOKEN> --env YARR_VERSION=<YOUR_YARR_VERSION> --env YARR_REPO=<YOUR_YARR_REPO> --env YARR_RELEASE_BASE_URL=<YOUR_YARR_RELEASE_BASE_URL> --env RUST_LOG=<YOUR_RUST_LOG> -- npx -y @dinglebear/yarr mcp

Related MCP servers

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

126
Python
MIT
View repository →

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

126
Python
MIT
View repository →

Yarr MCP

Active

Rust MCP and CLI server for Sonarr, Radarr, Prowlarr, Plex, Jellyfin, and download clients.

6
Rust
AGPL-3.0
View repository →

Labby

Active

Rust MCP gateway with Code Mode, authentication, setup, logs, CLI, HTTP API, and operator web UI.

5
Rust
AGPL-3.0
View repository →

Tailscale device, route, DNS, key, user, and ACL management over MCP and CLI.

5
Rust
AGPL-3.0
View repository →

Rust MCP server and CLI for Tailscale devices, users, keys, policies, and auth.

5
Rust
AGPL-3.0
View repository →