search_tmdb_person
Search for actors, directors, and other film professionals in The Movie Database to support cast and crew analysis for AI agents.
Instructions
Searches for people (actors, directors, etc.) in TMDB. Input: query (required search string), page (optional), language (optional ISO 639-1), include_adult (optional boolean), region (optional ISO 3166-1). Output: JSON with paginated person results. Purpose: Discover individuals for cast/crew analysis by AI agents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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 people | |
region | No | ISO 3166-1 region code (e.g., US) |
Input Schema (JSON Schema)
{
"properties": {
"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 people",
"type": "string"
},
"region": {
"description": "ISO 3166-1 region code (e.g., US)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}