Connects Claude directly to The Movie Database API with a comprehensive set of search and discovery tools. You get movie and TV show search, detailed metadata including budget and revenue figures, advanced filtering by genre and rating, recommendation engines, and cast/crew lookups. Also includes people search for actors and directors, plus trending content tracking. Requires a free TMDB API token. Install via npm or run with npx for quick access. Useful when you're building entertainment recommendations, researching film data, or need structured access to TMDB's catalog without writing your own API client. Ships with both stdio and HTTP transport options.
A Model Context Protocol (MCP) server that provides access to The Movie Database (TMDB) API. This server enables Claude and other MCP clients to search for movies, TV shows, and people, as well as get detailed information and recommendations.
🌟 Now available on the Official MCP Registry
Get started in seconds with npm:
# Install globally
npm install -g tmdb-mcp-server
# Or use with npx (no installation needed)
npx tmdb-mcp-server
Get your free TMDB API token: https://www.themoviedb.org/settings/api
Install from npm registry:
npm install -g tmdb-mcp-server
That's it! No build step required.
Prerequisites:
Steps:
git clone https://github.com/tcehjaava/tmdb-mcp-server.git
cd tmdb-mcp-server
npm install
.env file with your TMDB access token:cp .env.example .env
# Edit .env and add your TMDB_ACCESS_TOKEN
npm run build
Add the server to your Claude Desktop configuration:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"tmdb": {
"command": "npx",
"args": ["-y", "tmdb-mcp-server"],
"env": {
"TMDB_ACCESS_TOKEN": "your_tmdb_access_token_here"
}
}
}
}
{
"mcpServers": {
"tmdb": {
"command": "node",
"args": ["/absolute/path/to/tmdb-mcp-server/build/index.js"],
"env": {
"TMDB_ACCESS_TOKEN": "your_tmdb_access_token_here"
}
}
}
}
The server runs on stdio by default, making it compatible with any MCP client that supports stdio transport.
The server also supports Streamable HTTP transport for remote deployment:
MCP_TRANSPORT=http PORT=3000 node build/index.js
See TRANSPORT.md for detailed deployment instructions for platforms like Railway.
Run the server in watch mode for development:
npm run watch
Use the MCP Inspector for debugging:
npm run inspector
The Inspector provides a web interface for testing and debugging MCP tools.
Format code with Prettier:
npm run format
Here are some example queries you can try with Claude:
TMDB API has rate limits on their free tier:
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
See CONTRIBUTING.md for guidelines.
This project is licensed under the MIT License - see the LICENSE file for details.
TMDB_ACCESS_TOKEN*secretTMDB API access token (get free at https://www.themoviedb.org/settings/api)
hovecapital/read-only-local-postgres-mcp-server
cocaxcode/database-mcp
io.github.infoinlet-marketplace/mcp-mysql
io.github.cybeleri/database-admin
io.github.yash-0620/postgres-mcp-secured