search_tmdb_tv
Search for TV shows in The Movie Database using specific criteria like title, air date year, and language to find relevant series information.
Instructions
Searches specifically for TV shows in TMDB. Input: query (required search string), page (optional), language (optional ISO 639-1), first_air_date_year (optional year filter), include_adult (optional boolean). Output: JSON with paginated normalized results. Purpose: Targeted TV show discovery for AI-driven content queries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
first_air_date_year | No | Filter by first air date year | |
include_adult | No | Include adult results | |
language | No | ISO 639-1 code (e.g., en-US) | |
page | No | Page number | |
query | Yes | Search query for TV shows |
Input Schema (JSON Schema)
{
"properties": {
"first_air_date_year": {
"description": "Filter by first air date year",
"type": "number"
},
"include_adult": {
"description": "Include adult results",
"type": "boolean"
},
"language": {
"description": "ISO 639-1 code (e.g., en-US)",
"type": "string"
},
"page": {
"description": "Page number",
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query for TV shows",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}