get-trending
Retrieve trending movies by specifying a time window (day or week) using the TMDB MCP Server to access The Movie Database API.
Instructions
Get trending movies
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeWindow | No | Time window for trending movies |
Input Schema (JSON Schema)
{
"properties": {
"timeWindow": {
"description": "Time window for trending movies",
"enum": [
"day",
"week"
],
"type": "string"
}
},
"required": [],
"type": "object"
}