Tmdb Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Tmdb Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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](https://registry.modelcontextprotocol.io)
Get started in seconds with npm:
# Install globally
npm install -g tmdb-mcp-server
# Or use with npx (no installation needed)
npx tmdb-mcp-serverGet your free TMDB API token: https://www.themoviedb.org/settings/api
Install from npm registry:
npm install -g tmdb-mcp-serverThat's it! No build step required.
Prerequisites:
Steps:
git clone https://github.com/tcehjaava/tmdb-mcp-server.git
cd tmdb-mcp-servernpm install.env file with your TMDB access token:cp .env.example .env
# Edit .env and add your TMDB_ACCESS_TOKENnpm run buildAdd the server to your Claude Desktop configuration:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json
#### If installed via npm:
{
"mcpServers": {
"tmdb": {
"command": "npx",
"args": ["-y", "tmdb-mcp-server"],
"env": {
"TMDB_ACCESS_TOKEN": "your_tmdb_access_token_here"
}
}
}
}#### If installed from source:
{
"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.jsSee TRANSPORT.md for detailed deployment instructions for platforms like Railway.
Run the server in watch mode for development:
npm run watchUse the MCP Inspector for debugging:
npm run inspectorThe Inspector provides a web interface for testing and debugging MCP tools.
Format code with Prettier:
npm run formatHere 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.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.