search_plex_library
Search your Plex movie libraries by genre, actor, title, year, or library, and combine filters to see exactly which films you own or can watch.
Instructions
Searches the movies actually in the user's Plex library (across all movie libraries, including 4K) by genre, actor, title, release year, and/or library. Filters can be combined, e.g. genre 'Horror' with year 1982, or genre 'Horror' with library '4k'. Use this to answer what the user owns or can watch; use check_movie_status for Radarr/download status of one specific movie. Always express a narrowing the user asks for (4K, a genre, a year...) as a filter here rather than filtering results yourself, because the results table shown to the user contains exactly the rows this returns. The default limit is small: when the user wants everything ('all', 'every', 'list them'), pass limit 500; if the reply says more matches remain, call again with the offset it gives.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Release year. | |
| actor | No | Full actor name, e.g. 'Harrison Ford'. | |
| genre | No | Genre name, e.g. 'Horror' or 'Science Fiction'. | |
| limit | No | Maximum results to return (default 25, max 500). | |
| title | No | Part of the movie title. | |
| offset | No | Matches to skip, to fetch the next page of a long result. | |
| library | No | Only search Plex libraries whose name contains this text, e.g. '4k' for the 4K libraries, 'kids', 'documentaries'. |