Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RADARR_URL | Yes | The URL of your Radarr instance (e.g., http://your-ip:7878). Trailing slashes are normalized automatically. | |
| SONARR_URL | Yes | The URL of your Sonarr instance (e.g., http://your-ip:8989). Trailing slashes are normalized automatically. | |
| RADARR_API_KEY | Yes | The API key for Radarr, found in Settings -> General -> API Key. | |
| SONARR_API_KEY | Yes | The API key for Sonarr, found in Settings -> General -> API Key. | |
| QUALITY_PROFILE_ID | Yes | The numeric profile ID from your Radarr or Sonarr instance to use for added content. | |
| RADARR_ROOT_FOLDER | No | The root folder path for Radarr movies. If omitted, the server auto-detects the first available root folder. | |
| SONARR_ROOT_FOLDER | No | The root folder path for Sonarr shows. If omitted, the server auto-detects the first available root folder. |
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_movies | Search for movies by title using Radarr's built-in lookup. Args: title: Movie title only (e.g., "The Matrix" or "Primer") Returns: Dict with search results |
| add_movie_by_id | Add a specific movie to Radarr using its TMDb ID. Args: tmdb_id: The Movie Database ID for the movie root_folder: Optional root folder path (e.g., "/storage/movies") Returns: Result of the add operation |
| search_and_add_show | Search for TV shows using natural language description and optionally add to Sonarr. Args: description: Natural language description of the TV show (e.g., "British time travel show with the Doctor") auto_add: If True and only one result found, automatically add to Sonarr Returns: List of matching TV shows with metadata |
| add_show_by_tvdb_id | Add a specific TV show to Sonarr using its TVDB ID. Args: tvdb_id: The TV Database ID for the show title: The title of the show root_folder: Optional root folder path (e.g., "/storage/anime") Returns: Result of the add operation |
| test_config | Test the current configuration and API connectivity. Returns: Configuration status and basic connectivity tests |
| get_server_status | Check the status and connectivity of Radarr and Sonarr servers. Returns: Status information for both servers |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |