search_films
Find films in Metatake's corpus by title (also matches original titles and director names). Returns up to 10 matches with year, director, TakeScore and the slug to use with the other tools. Films marked [analyzed] have a full critical pack.
Parameters2
| query | string | required | Film title (or part of it), original title, or director name |
| year | integer | optional | Optional release year to narrow the match |
Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Film title (or part of it), original title, or director name"
},
"year": {
"type": "integer",
"description": "Optional release year to narrow the match"
}
},
"required": [
"query"
]
}