Sonarr: Add Series
sonarr_add_seriesAdd a series to Sonarr by specifying its TVDB ID, quality profile, and root folder path.
Instructions
Add a new series to Sonarr by TVDB id. Internally calls /series/lookup to fetch the full series metadata, then POSTs /series with the merged body. Returns the created SeriesResource. Workflow: call sonarr_lookup_series first to get the tvdbId, sonarr_list_quality_profiles for quality_profile_id, sonarr_list_root_folders for root_folder_path. Note: search_for_missing_episodes defaults to false here — Sonarr's server-side default is true, which may immediately hit indexers; flip explicitly if you want that.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tvdb_id | Yes | The TVDB id of the series to add (from sonarr_lookup_series). | |
| quality_profile_id | Yes | Quality profile id (from sonarr_list_quality_profiles). | |
| root_folder_path | Yes | Root folder path (from sonarr_list_root_folders). | |
| monitored | No | Track this series for missing episodes (default true). | |
| season_folder | No | Organize episodes into per-season subfolders (default true). | |
| monitor | No | Which episodes to monitor on add (default 'all'). | |
| search_for_missing_episodes | No | Trigger a search for missing episodes immediately on add (default false). |