TMDB Movie Database
STDIOMCP server providing access to The Movie Database API for movie information retrieval.
MCP server providing access to The Movie Database API for movie information retrieval.
A Model Context Protocol (MCP) server that provides access to The Movie Database (TMDB) API. This server enables AI assistants to search and retrieve movie information through the MCP interface.
git clone https://github.com/rakeshgangwar/tmdb-mcp-server.git cd tmdb-mcp-server
npm install
npm run build
Configure the MCP server in your MCP settings file (typically cline_mcp_settings.json
):
{ "mcpServers": { "tmdb": { "command": "node", "args": ["/path/to/tmdb-mcp-server/dist/index.js"], "env": { "TMDB_API_KEY": "your-api-key-here" }, "disabled": false, "autoApprove": [] } } }
Replace your-api-key-here
with your TMDB API key and replace /path/to/
with actual path.
Search for movies using The Movie Database API.
Parameters:
query
(required): Search query stringyear
(optional): Filter by release yearpage
(optional): Page number (default: 1)Example:
{ "query": "Inception", "year": 2010, "page": 1 }
src
directorynpm run build
git checkout -b feature/amazing-feature
)git commit -am 'Add some amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.