prowlarr_indexers
Perform CRUD and management operations on Prowlarr indexers, including listing schemas, testing connections, and retrieving stats.
Instructions
prowlarr indexers operations on Prowlarr. Pass operation and an arguments dict matching that operation's parameters.
prowlarr_bulk_delete_indexers(body) — Bulk-delete indexers. body is an IndexerBulkResource with ids.
prowlarr_bulk_update_indexers(body) — Bulk-edit indexers. body is an IndexerBulkResource with ids plus optional tags/applyTags/enable/appProfileId to apply to all of them.
prowlarr_create_indexer(body, force_save=None) — Create an indexer. body is an IndexerResource (fetch prowlarr_list_indexer_schemas for the provider definition). force_save bypasses validation (e.g. for disabled indexers).
prowlarr_delete_indexer(id) — Delete an indexer by id.
prowlarr_get_indexer(id) — Get a single indexer by id.
prowlarr_get_indexer_stats(start_date='', end_date='', indexers='', protocols='', tags='') — Aggregated query/download statistics per indexer. start_date/end_date are ISO dates; indexers/protocols/tags are comma-separated filters (protocols: usenet|torrent).
prowlarr_indexer_action(name, body) — Run a named action on an indexer (e.g. reset indexer status).
prowlarr_list_indexer_categories() — List the default indexer categories (tv, movies, music, books, and subcategories) with their ids and parents.
prowlarr_list_indexer_schemas() — List indexer provider schemas (definitions of every supported indexer type and its fields). Read this before creating an indexer.
prowlarr_list_indexer_status() — List indexer status records (current failure/backoff state and most recent failure per indexer).
prowlarr_list_indexers() — List all configured indexers with their settings, status, and category mappings.
prowlarr_test_all_indexers() — Test every configured indexer.
prowlarr_test_indexer(body, force_test=None) — Test an indexer connection without saving it.
prowlarr_update_indexer(id, body, force_save=None) — Update an indexer by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| arguments | No | ||
| operation | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |