MCP Server with TMDB
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tmdb-local": {
"args": [],
"command": "/full/path/to/mcp-server-tmdb/plugins/tmdb/scripts/run-server.sh"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server for The Movie Database (TMDB) API. It provides movie and TV search, streaming availability, cast and crew details, and recommendations for assistants such as Codex and Claude Desktop.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
movieFull movie details in JSON (title, cast, director, reviews, poster URL)
tmdb:///movie/{id}
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
The official MCP Server for the Mux API
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Unity MCP Server — 268 tools for AI-assisted game development. Connect Claude, Cursor, or any MCP client to Unity Editor & Unity Hub. Scene management, GameObjects, components, builds, profiling, Shader Graph, Amplify, terrain, physics, NavMesh, animation, MPPM multiplayer & more. Free & open source by AnkleBreaker Studio.
A Model Context Protocol (MCP) server that gives Claude direct control over Strudel.cc for AI-assisted music generation and live coding.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Tmdb and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for The Movie Database (TMDB) API. It provides movie and TV search, streaming availability, cast and crew details, and recommendations for assistants such as Codex and Claude Desktop.
For the architecture split between the reusable MCP server and higher-level feature workflows, see USERGUIDE.md.
timeWindow: "day" | "week")movieId)timeWindow: "day" | "week")personIdtmdb:///movie/<id> — Full movie details in JSON (title, cast, director, reviews, poster URL)Get a TMDB API key at themoviedb.org → Account Settings → API
Clone, install, and build:
git clone https://github.com/Laksh-star/mcp-server-tmdb.git
cd mcp-server-tmdb
npm install
Create a local env file and add your TMDB key:
cp .env.example .env
Install the local Codex and Claude Desktop integration:
npm run install:local
Restart Codex or Claude Desktop if already open.
Verify with a prompt like:
What movies are trending this week?
In Codex, a fresh session should show TMDB in the plugin list and expose the mcp__tmdb__ namespace.
Use this smoke test after adding or merging tools. It verifies the expected MCP tool contract and calls the main workflow tools: compare_movies, find_where_to_watch, get_weekend_watchlist, plan_watch_party, build_franchise_watch_order, build_collection_gap_plan, recommend_from_taste_profile, and build_person_watch_path.
Local stdio MCP:
npm run build
set -a && source ./.env && set +a && npm run smoke:tools
Cloudflare-hosted MCP:
TMDB_MCP_ACCESS_TOKEN=<your-access-token> node scripts/tool-surface-s
... [View full README on GitHub](https://github.com/Laksh-star/mcp-server-tmdb#readme)