TMDB MCP Server
About
MCP server for The Movie Database (TMDB) with IMDb/Rotten Tomatoes/Metacritic ratings via OMDb.
Use this server
Add it to your MCP client. The catalogue lists this config verbatim from its source — it does not run, download, or vouch for the server. Review the command before you run it.
Transportstdio (runs a local command)
Env vars
TMDB_API_TOKEN OMDB_API_KEY TMDB_LANGUAGE TMDB_REGIONClaude Code
claude mcp add --env TMDB_API_TOKEN= --env OMDB_API_KEY= --env TMDB_LANGUAGE= --env TMDB_REGION= tmdb-mcp -- npx tmdb-mcp
Cursor
If the button doesn't open Cursor, use the JSON below — Cursor accepts the same mcpServers config.
VS Code
code --add-mcp '{"name":"tmdb-mcp","command":"npx","args":["tmdb-mcp"],"env":{"TMDB_API_TOKEN":"","OMDB_API_KEY":"","TMDB_LANGUAGE":"","TMDB_REGION":""}}'
JSON
{
"mcpServers": {
"tmdb-mcp": {
"command": "npx",
"args": [
"tmdb-mcp"
],
"env": {
"TMDB_API_TOKEN": "",
"OMDB_API_KEY": "",
"TMDB_LANGUAGE": "",
"TMDB_REGION": ""
}
}
}
}
Environment variables are listed by name only — fill in your own values. Entries never carry secrets.