add_show_by_tvdb_id
Add a TV show to Sonarr using its TVDB ID. Specify the show's title and optional root folder for organized storage. Simplifies show management with direct integration.
Instructions
Add a specific TV show to Sonarr using its TVDB ID.
Args: tvdb_id: The TV Database ID for the show title: The title of the show root_folder: Optional root folder path (e.g., "/storage/anime")
Returns: Result of the add operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
root_folder | No | ||
title | Yes | ||
tvdb_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"root_folder": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Root Folder"
},
"title": {
"title": "Title",
"type": "string"
},
"tvdb_id": {
"title": "Tvdb Id",
"type": "integer"
}
},
"required": [
"tvdb_id",
"title"
],
"type": "object"
}