MCP server for The Movie Database (TMDB) API
Valid MCP server (2 strong, 4 medium validity signals). 4 known CVEs in dependencies (0 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry.
5 files analyzed ยท 5 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: TMDB_ACCESS_TOKEN
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-tcehjaava-tmdb-mcp-server": {
"env": {
"TMDB_ACCESS_TOKEN": "your-tmdb-access-token-here"
},
"args": [
"-y",
"tmdb-mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
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.
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.