Sonarr: Grab Release
sonarr_grab_releaseQueue a download from the indexer for a given release. If the quality profile rejected the release, set 'should_override' to true to force the grab.
Instructions
HIGH RISK. Immediately queues a download from the indexer for the given release. Pass the release object verbatim from sonarr_release_search output — Sonarr looks the release up server-side by guid+indexerId, so the cache must still be warm (re-run release_search if the grab fails with a 'not found' error). If the release was rejected by the quality profile, set should_override to true to grab anyway.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| release | Yes | The ReleaseResource object returned by sonarr_release_search. Pass it verbatim — guid + indexerId are what Sonarr keys on; other fields (including episodeId / episodeIds for episode-targeted grabs) ride along. | |
| should_override | No | Force-grab a release even if the quality profile rejected it (default false). Mirrors Sonarr's UI 'Override and Download' button. |