This MCP server integrates with The Movie Database (TMDB) API to provide movie information and search capabilities.
Returns detailed movie information including title, release date, rating, and overview
get_recommendations
Returns top 5 recommended movies with details
get_trending
The server provides access to movie information:
tmdb:///movie/<movie_id>)Request an API key for developer use
Set up environment:
bash
export TMDB_API_KEY=your_api_key_here
Add the following to your app's server configuration:
{
"mcpServers": {
"tmdb": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-tmdb"
],
"env": {
"TMDB_API_KEY": "your_api_key_here"
}
}
}
}
Search for movies:
Use the search_movies tool with a query parameter
Get movie recommendations:
Use the get_recommendations tool with a movieId parameter
Get trending movies:
Use the get_trending tool with timeWindow parameter (day/week)
MIT License
$ claude mcp add mcp-server-tmdb \
-- python -m otcore.mcp_server <graph>