JUHE API Marketplace
omniwaifu avatar
MCP Server

arr-assistant-mcp

A server that allows users to add movies and TV shows to Radarr/Sonarr using natural language queries.

1
GitHub Stars
8/23/2025
Last Updated
MCP Server Configuration
1{
2 "name": "arr-assistant",
3 "command": "uv",
4 "args": [
5 "--directory",
6 "/path/to/arr-assistant-mcp/",
7 "run",
8 "src/arr_assistant_mcp/main.py"
9 ],
10 "env": {
11 "RADARR_URL": "http://your-ip: 7878",
12 "RADARR_API_KEY": "your-radarr-api-key",
13 "SONARR_URL": "http://your-ip: 8989",
14 "SONARR_API_KEY": "your-sonarr-api-key"
15 }
16}
JSON16 lines

README Documentation

arr-assistant-mcp

MCP server for adding movies and TV shows to Radarr/Sonarr via natural language queries.

Setup

Requires Python 3.12+ and uv.

git clone <repo>
cd arr-assistant-mcp
uv sync

Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "arr-assistant": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/arr-assistant-mcp/",
        "run",
        "src/arr_assistant_mcp/main.py"
      ],
      "env": {
        "RADARR_URL": "http://your-ip:7878",
        "RADARR_API_KEY": "your-radarr-api-key",
        "SONARR_URL": "http://your-ip:8989",
        "SONARR_API_KEY": "your-sonarr-api-key"
      }
    }
  }
}

API Keys

  • Radarr/Sonarr: Settings → General → API Key

Tools

  • test_config() - Test configuration and connectivity
  • search_movies(title) - Search for movies by title
  • add_movie_by_id(tmdb_id, root_folder=None) - Add movie to Radarr
  • search_and_add_show(description) - Search and add TV shows to Sonarr
  • add_show_by_tvdb_id(tvdb_id, title, root_folder=None) - Add show to Sonarr
  • get_server_status() - Check Radarr/Sonarr status

Usage

search_movies("The Matrix")
add_movie_by_id(603)

# Specify custom root folder
add_show_by_tvdb_id(123456, "Attack on Titan", "/storage/anime")

Root folders are auto-detected from your Radarr/Sonarr configurations, but can be overridden per-request.

Quick Install

Quick Actions

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source