add_movie_by_id
Add a movie to Radarr using its TMDb ID, specifying an optional root folder for storage. Simplifies movie management by integrating with Radarr via direct ID input.
Instructions
Add a specific movie to Radarr using its TMDb ID.
Args: tmdb_id: The Movie Database ID for the movie root_folder: Optional root folder path (e.g., "/storage/movies")
Returns: Result of the add operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
root_folder | No | ||
tmdb_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"root_folder": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Root Folder"
},
"tmdb_id": {
"title": "Tmdb Id",
"type": "integer"
}
},
"required": [
"tmdb_id"
],
"type": "object"
}