search_movies
Search for movie titles using the Radarr lookup feature. Provides results in a structured format to help users find and manage films efficiently.
Instructions
Search for movies by title using Radarr's built-in lookup.
Args: title: Movie title only (e.g., "The Matrix" or "Primer")
Returns: Dict with search results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}