Searches TMDB for movies, shows, people, ratings, streaming providers, credits, recommendations, and structured discovery results.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by TMDB MCP Server.
search_moviesSearch TMDB movies by title; returns compact summaries with the TMDB id that the other movie tools (get_movie, get_movie_credits, β¦) require, plus pagination info. Use this over search_multi when you already know the result is a movie. `region` here only picks which country's release_date is shown per result (e.g. a title's US vs. India theatrical date) β verified live, it does not filter which movies match or reorder them; for actual region-based availability use get_watch_providers instead.
search_tvSearch TMDB TV shows by name; returns compact summaries with the TMDB id that get_tv and the other TV tools require. Use this over search_multi when you already know the result is a TV show.
search_multiSearch movies, TV shows and people in one call. Each result carries a media_type ('movie' | 'tv' | 'person') so you can route to the right get_* tool. Use when the user's query could be any of these; if you already know the type, search_movies/search_tv/search_people are more precise.
search_peopleSearch TMDB people (actors, directors, crew) by name; returns the TMDB id needed by get_person plus their top 5 best-known titles (known_for). Use this over search_multi when you already know the result is a person.
search_keywordsResolve keyword names to TMDB keyword ids (e.g. 'time travel', 'based on true story'). Feed the ids into discover_movies/discover_tv via with_keywords / without_keywords.
search_companiesResolve a production company's name to its TMDB numeric id (e.g. 'A24', 'Pixar'). Feed the id into discover_movies/discover_tv via with_companies. Company names aren't unique β TMDB can have several unrelated companies sharing the same name (e.g. two different 'A24's, one US and one GB) β check origin_country and logo_url to tell rows apart when a name matches more than one.
TMDB MCP Server MCP server gives MCP clients access to The Movie Database for movie, TV, and person research. It can search titles and people, retrieve TMDB identifiers, and return either compact cards or detailed records. Movie and TV details can include overviews, genres, runtime or season information, ratings averages, certifications, links, and credits. Person records include biographies and links, while person credits provide cast and crew filmographies.
The server also supports discovery workflows. Agents can find movies or shows by genres, dates, ratings, vote counts, languages, companies, keywords, providers, certifications, and other filters. Movie discovery supports cast, crew, and person filters; TV discovery does not support those person-based filters, so TV work by an individual should be found through their credits. Search helpers resolve genre, keyword, company, and watch-provider names into IDs for later discovery calls.
The server communicates over MCP stdio and can be used by clients such as Claude Desktop, Cursor, and Cline. Most workflows begin with a search tool, then pass the returned TMDB ID to a detail, credit, recommendation, or media tool. Separate batch tools retrieve compact information for up to 20 movies or TV shows at once.
TMDB is the primary data source. When an IMDb ID is available and an OMDb key has been configured, detailed movie and TV lookups can add IMDb, Rotten Tomatoes, and Metacritic scores plus an awards summary. OMDb failures or missing keys return an unavailable ratings result rather than preventing the main TMDB lookup. The server also provides MCP prompts for planning similar-title searches and finding highly regarded titles associated with a person or production company.
Install the package through npm with npx -y tmdb-mcp, then add the command to the MCP client's configuration. Set TMDB_API_TOKEN to a TMDB v4 Read Access Token; this is the only required credential. OMDB_API_KEY is optional and enables external ratings enrichment. TMDB_LANGUAGE controls localization and defaults to en-US, while TMDB_REGION can set the region used for certification and related localized behavior.
Claude Desktop users can alternatively install the .mcpb bundle from a release and enter the token in the installation dialog. From source, clone the repository, run npm ci && npm run build, and start the resulting dist/index.js with Node and the same environment variables.
TMDB MCP Server MCP server includes tools for:
Regional behavior varies by tool. get_watch_providers is the appropriate choice for availability by country, while a movie search region mainly selects the release date displayed in results. Certifications fall back from the requested region to the US and then another available country; the response identifies which region supplied the value.
TV discovery cannot filter by cast, crew, or person. TV show-level credits also may not reliably identify creators, writers, or directors, so use get_tv.created_by for show creators and get_tv_episode for episode-level writing and directing information. Similar-title result counts reflect TMDB's unfiltered totals even when the server removes weak broad-genre matches, so pages may contain few or no usable results. Video results are limited by the configured TMDB_LANGUAGE and have no per-call language override.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/tmdb-mcp-server)<a href="https://allmcps.com/mcp/tmdb-mcp-server"><img src="https://allmcps.com/api/badge/tmdb-mcp-server?style=directory" alt="TMDB MCP Server on AllMCPs" /></a>