TMDB MCP Server for Cursor
io.github.grinv/tmdb-mcp
MCP server for The Movie Database (TMDB) with IMDb/Rotten Tomatoes/Metacritic ratings via OMDb.
client:Cursor
transport:stdio
runtime:npm
Install TMDB MCP Server in Cursor
~/.cursor/mcp.json · windows: %USERPROFILE%\.cursor\mcp.json
{
"mcpServers": {
"tmdb-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tmdb-mcp"
],
"env": {
"TMDB_API_TOKEN": "<TMDB_API_TOKEN>",
"OMDB_API_KEY": "<OMDB_API_KEY>",
"TMDB_LANGUAGE": "<TMDB_LANGUAGE>",
"TMDB_REGION": "<TMDB_REGION>"
}
}
}
}
Use .cursor/mcp.json in a project root instead to scope it to that project. Cursor merges both. Cursor docs