Direct Mode
Fully automated - Content added immediately to Radarr/Sonarr without approval.
Best for: Personal servers, solo users, complete automation
Blockbusterr supports two integration modes for adding content to your library.
Direct Mode
Fully automated - Content added immediately to Radarr/Sonarr without approval.
Best for: Personal servers, solo users, complete automation
Jellyseerr Mode
Request-based - Content creates Jellyseerr requests requiring approval.
Best for: Family servers, shared libraries, curated collections
Content is added directly to Radarr and Sonarr without any approval workflow.
graph LR A[Job Runs] --> B[Content Found] B --> C[Passes Filters] C --> D[Added to Radarr/Sonarr] D --> E[Auto Search & Download]integration: mode: "direct"
radarr: enabled: true url: "http://radarr:7878" api_key: "your_radarr_api_key" quality_profile_id: 1 root_folder: "/movies"
sonarr: enabled: true url: "http://sonarr:8989" api_key: "your_sonarr_api_key" quality_profile_id: 1 root_folder: "/tv"integration: mode: "direct"
radarr: enabled: true url: "http://radarr:7878" api_key: "your_radarr_api_key" quality_profile_id: 4 # HD-1080p root_folder: "/movies" search_on_add: true # Auto-search immediately monitor: true # Monitor for upgrades minimum_availability: "announced" # Add as soon as announced
sonarr: enabled: true url: "http://sonarr:8989" api_key: "your_sonarr_api_key" quality_profile_id: 3 # HD-720p/1080p root_folder: "/tv" search_on_add: true monitor: "all" # Monitor all episodes season_folder: true # Organize by season series_type: "standard" # Standard, daily, or animeWhen running in Docker, use container names:
radarr: url: "http://radarr:7878" # Not localhost!
sonarr: url: "http://sonarr:8989" # Not localhost!✅ Pros
❌ Cons
Scenario: Single user with trusted filters.
jobs: curated_movies: type: "movie" list_type: "trakt_popular" fetch_count: 50 threshold_score: 75 # High bar schedule: "0 0 * * 0" # WeeklyResult: 10-15 high-quality movies added automatically every week.
Scenario: Large storage, want everything trending.
jobs: trending_everything: type: "movie" list_type: "trakt_trending" fetch_count: 500 threshold_score: 50 # Low bar schedule: "0 */6 * * *" # Every 6 hoursResult: Hundreds of items added daily.
Content creates requests in Jellyseerr which require approval before being sent to Radarr/Sonarr.
graph LR A[Job Runs] --> B[Content Found] B --> C[Passes Filters] C --> D[Request Created in Jellyseerr] D --> E[Admin Approves] E --> F[Jellyseerr → Radarr/Sonarr] F --> G[Auto Search & Download]integration: mode: "jellyseerr"
jellyseerr: enabled: true url: "http://jellyseerr:5055" api_key: "your_jellyseerr_api_key"Configure Jellyseerr to auto-approve high-scoring requests:
In Jellyseerr Settings:
In Blockbusterr:
jobs: high_quality_movies: threshold_score: 85 # Only excellent contentResult: Scores 85+ auto-approved, others need manual review.
Prevent request spam with Jellyseerr quotas:
In Jellyseerr:
In Blockbusterr:
jobs: popular_movies: fetch_count: 30 # Limit how many requests created✅ Pros
❌ Cons
Scenario: Multiple family members using Plex/Jellyfin.
integration: mode: "jellyseerr"
jobs: family_friendly: type: "movie" threshold_score: 65 schedule: "0 8 * * *"In Jellyseerr:
Scenario: Quality over quantity, manual curation.
jobs: award_winners: type: "movie" list_type: "trakt_anticipated" threshold_score: 70 schedule: "0 0 * * 1" # WeeklyWorkflow:
Choose Direct Mode if:
Choose Jellyseerr Mode if:
Pro tip: Use both modes with different jobs!
integration: mode: "jellyseerr" # Default mode
jobs: # Auto-add only the absolute best masterpiece_movies: type: "movie" threshold_score: 90 # Extremely high # These go through Jellyseerr
# Everything else needs approval popular_movies: threshold_score: 65 # These create requests in JellyseerrThen in Jellyseerr, set auto-approve for scores 90+ and manual review for 65-89.
To switch from Direct → Jellyseerr:
config.yaml to mode: "jellyseerr"To switch from Jellyseerr → Direct:
config.yaml to mode: "direct"Configure Jellyseerr
Set up Jellyseerr integration
Configure Radarr
Set up Radarr for movies
Configure Sonarr
Set up Sonarr for TV shows
Create Jobs
Set up automated jobs