adamayoung/tmdb-mcp
TMDb MCP Server
Platform-specific configuration:
{
"mcpServers": {
"tmdb-mcp": {
"command": "npx",
"args": [
"-y",
"tmdb-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
An MCP server that integrates with The Movie Database (TMDB) API to provide movie information, search capabilities, and recommendations.
npx -y @adamayoung/mcp-server-tmdbAdd the following to your Claude Desktop configuration (~/Library/Application Support/Claude/config.json):
{
"mcpServers": {
"tmdb": {
"command": "npx",
"args": ["-y", "@adamayoung/mcp-server-tmdb"],
"env": {
"TMDB_API_KEY": "your_api_key_here"
}
}
}
}Add the following to your Claude Code settings:
{
"mcpServers": {
"tmdb": {
"command": "npx",
"args": ["-y", "@adamayoung/mcp-server-tmdb"],
"env": {
"TMDB_API_KEY": "your_api_key_here"
}
}
}
}tmdb:///movie/<movie_id>) - Comprehensive movie details including title, release date, rating, overview, genres, poster URL, cast, director, and reviewsgit clone git@github.com:adamayoung/tmdb-mcp.git
cd tmdb-mcp
npm install
npm run buildTo watch for changes:
npm run watchThis MCP server is licensed under the MIT License. See the LICENSE file for details.
Loading reviews...