MCP server for The Movie Database (TMDB) with IMDb/Rotten Tomatoes/Metacritic ratings via OMDb.
claude mcp add tmdb-mcp -- npx -y tmdb-mcp{
"mcpServers": {
"tmdb-mcp": {
"command": "npx",
"args": ["-y", "tmdb-mcp"]
}
}
}MCP Servers overview
# TMDB MCP Server
[](https://www.npmjs.com/package/tmdb-mcp)
[](https://github.com/Grinv/tmdb-mcp/actions/workflows/ci.yml)
[](LICENSE)
[](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.Grinv/tmdb-mcp&version=latest)
[](https://glama.ai/mcp/servers/Grinv/tmdb-mcp)
An [MCP](https://modelcontextprotocol.io) server for **The Movie Database
(TMDB)**: search and look up movies, TV shows and people, and read
**IMDb / Rotten Tomatoes / Metacritic** ratings (via [OMDb](https://www.omdbapi.com/))
in the same call.
The server speaks standard MCP over stdio, so it works with any MCP client
(Claude Desktop/Code, Cursor, VS Code, Cline, …).
Once it's connected, just ask your agent in natural language (needs a free TMDB
token — see [Getting your credentials](#getting-your-credentials)):
```
"Search for the movie Dune: Part Two and show its overview, genres and runtime."
"What movies are trending this week?"
"Find TV shows similar to Breaking Bad."
"Who directed Oppenheimer? Show the main cast."
"What's Greta Gerwig's filmography?"
"Discover highly-rated sci-fi movies from the 2010s, sorted by rating."
"Where can I stream The Bear in the US?"
"Show me the trailer for Deadpool & Wolverine."
"List the episodes of Severance season 1."
"Which movie has IMDb id tt0111161?"
"Search for people named Zendaya."
```
With an optional (free) **OMDb** key, ratings are added too:
```
"What are the IMDb, Rotten Tomatoes and Metacritic scores for The Godfather?"
"Compare the critics' scores for Barbie and Oppenheimer."
```
## Install
Add it to your MCP client's config. The only required credential is a TMDB v4
**Read Access Token**; `OMDB_API_KEY` (ratings) and `TMDB_LANGUAGE` / `TMDB_REGION`
(localization) are optional.
**Via npx (no install):**
```json
{
"mcpServers": {
"tmdb": {
"command": "npx",
"args": ["-y", "tmdb-mcp"],
"env": {
"TMDB_API_TOKEN": "your-tmdb-v4-read-access-token (required)",
"OMDB_API_KEY": "your-omdb-key (optional — IMDb/RT/Metacritic ratings)",
"TMDB_LANGUAGE": "en-US (optional — localize, e.g. ru-RU)",
"TMDB_REGION": "US (optional — region for certifications, e.g. RU)"
}
}
}
}
```
> Replace each value with your own. Only `TMDB_API_TOKEN` is required — delete the
> lines marked optional if you don't need them.
**As a `.mcpb` bundle (easiest for Claude Desktop):** download `tmdb-mcp.mcpb`
from the [latest release](https://github.com/Grinv/tmdb-mcp/releases/latest),
then open it / drag it into Claude Desktop's Extensions. It's a self-contained
bundle (no Node or npm needed); enter the token and the optional fields in the
install dialog. Re-download and reinstall to update.
**From source:** `git clone`, then `npm ci && npm run build`, and point the client
at it with `"command": "node"`, `"args": ["/ABS/PATH/tmdb-mcp/dist/index.js"]` and
the same `env` as above.
See [docs/clients.md](docs/clients.md) for per-client details and all tunables.
## What it does
| Tool | Purpose |
| ------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
| `search_movies` / `search_tv` / `search_people` | Find titles/people by name → TMDB id |
| `search_multi` | Search movies, TV and people at once (each row has a `media_type`) |
| `get_movie` / `get_tv` | Full details **+ IMDb/RT/Metacritic ratings** (toggle with `include_ratings`) |
| `get_person` | Biography, department, links |
| `get_movie_credits` / `get_tv_credits` | Top-billed cast and headline crew |
| `get_movie_recommendations` / `get_tv_recommendations` | TMDB's editorial recommendations |
| `get_similar` | Algorithmically similar titles (`media_type` + id) |
| `get_trending` | What's popular now (movies / TV / people, day or week) |
| `get_movie_genres` / `get_tv_genres` | Genre id ↔ name reference |
| `discover_movies` / `discover_tv` | Filter by genre, year/date range, rating, cast/crew, keywords, providers, certification, … |
| `get_watch_providers` | Where to stream/rent/buy, by region (JustWatch via TMDB) |
| `get_person_credits` | A person's filmography (cast & crew) |
| `get_videos` | Trailers/teasers/clips (YouTube links) |
| `get_reviews` | User reviews (author, rating, text) for a movie/TV |
| `get_collection` | A movie franchise/collection and its parts, in release order |
| `find_by_imdb_id` | Resolve an IMDb id → TMDB movie/TV/person |
| `get_tv_season` / `get_tv_episode` | Season episode list / single-episode details |
| `search_keywords` | Resolve keyword names → ids for `discover_*` |
| `get_ratings` | IMDb/RT/Metacritic ratings by IMDb id or title (standalone) |
**Prompts.** Alongside the tools above, the server exposes one MCP prompt:
`recommend_similar` (`title`, optional `media_type`, optional `count`) plans a
search for titles similar to one the user liked, driving `get_similar` /
`get_movie_recommendations` / `get_tv_recommendations` / `discover_movies` /
`discover_tv` instead of relying on the model's own knowledge.
**Backbone vs. enrichment.** TMDB is the primary source (search, metadata,
people, trending). OMDb is optional enrichment: `get_movie`/`get_tv` chain the
`imdb_id` TMDB returns into an OMDb lookup so ratings come back in one call.
Without an OMDb key the TMDB data still works; the `ratings` field just reports
that it is unconfigured.
**Localization.** Set `TMDB_LANGUAGE` (e.g. `ru-RU`) and `TMDB_REGION` (e.g.
`RU`) to get localized titles/overviews/genre names and region-specific
certifications. The search tools, `get_movie`/`get_tv`/`get_person`,
`get_collection` and `discover_movies`/`discover_tv` also accept a per-call
`language` override.
## Getting your credentials
One token is required (TMDB); the OMDb key is optional. Both are free.
1. **TMDB token (required).** Create a free account at
[themoviedb.org](https://www.themoviedb.org/signup), then open
**[Settings → API](https://www.themoviedb.org/settings/api)** and request an API
key (personal use). Copy the **"API Read Access Token"** (the long v4 token, _not_
the short v3 key) into **`TMDB_API_TOKEN`**. It's sent as `Authorization: Bearer …`.
2. **OMDb key (optional).** Grab a free key at
**[omdbapi.com/apikey.aspx](https://www.omdbapi.com/apikey.aspx)** (the free tier
is fine), click the activation link in the email, and set **`OMDB_API_KEY`**. This
unlocks `get_ratings` and the IMDb / Rotten Tomatoes / Metacritic scores in movie
and TV details. Without it, everything else still works.
Put these in your MCP client config's `env` block (see
[docs/clients.md](docs/clients.md) for per-client snippets) — never commit them.
`TMDB_LANGUAGE` / `TMDB_REGION` optionally set default locale/region (e.g. `ru-RU`, `RU`).
### Advanced tuning (env-only, no install-UI equivalent)
Sensible defaults; only set these if you know you need to. Env var only — not
exposed in Claude Desktop's install form, so CLI/Docker users set them directly.
| Variable | Default | Purpose |
| ---------------------- | ------------------------------ | -------------------------------------------------- |
| `TMDB_BASE_URL` | `https://api.themoviedb.org/3` | Override TMDB's API base (e.g. a proxy) |
| `OMDB_BASE_URL` | `https://www.omdbapi.com` | Override OMDb's API base |
| `HTTP_TIMEOUT_MS` | `15000` | Per-request timeout before aborting |
| `HTTP_RETRIES` | `2` | Retries on a transient upstream failure |
| `TMDB_MIN_INTERVAL_MS` | `60` | Minimum spacing between TMDB requests |
| `OMDB_MIN_INTERVAL_MS` | `0` | Minimum spacing between OMDb requests |
| `CACHE_TTL_MS` | `300000` | How long cached responses stay fresh |
| `LOG_LEVEL` | `info` | `debug` \| `info` \| `warn` \| `error` \| `silWhat people ask about tmdb-mcp
What is Grinv/tmdb-mcp?
+
Grinv/tmdb-mcp is mcp servers for the Claude AI ecosystem. MCP server for The Movie Database (TMDB) with IMDb/Rotten Tomatoes/Metacritic ratings via OMDb. It has 3 GitHub stars and was last updated today.
How do I install tmdb-mcp?
+
You can install tmdb-mcp by cloning the repository (https://github.com/Grinv/tmdb-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is Grinv/tmdb-mcp safe to use?
+
Grinv/tmdb-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains Grinv/tmdb-mcp?
+
Grinv/tmdb-mcp is maintained by Grinv. The last recorded GitHub activity is from today, with 0 open issues.
Are there alternatives to tmdb-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy tmdb-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/grinv-tmdb-mcp)<a href="https://claudewave.com/repo/grinv-tmdb-mcp"><img src="https://claudewave.com/api/badge/grinv-tmdb-mcp" alt="Featured on ClaudeWave: Grinv/tmdb-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface