tmdb
MCP server from rakeshgangwar/tmdb-mcp-server
claude mcp add --transport stdio rakeshgangwar-tmdb-mcp-server node /path/to/tmdb-mcp-server/dist/index.js \ --env TMDB_API_KEY="your-api-key-here"
How to use
The TMDB MCP Server provides access to The Movie Database (TMDB) data through the MCP interface. Once running, you can query for movies and retrieve detailed information via the MCP tools exposed by this server. The primary tool exposed is search_movies, which lets you search TMDB by title (and optional year) and paginate results. This enables AI assistants that follow the MCP standard to search the TMDB catalog and present results to users in a structured way. To use it within an MCP-enabled workflow, configure your MCP settings to point at the server and call the search_movies tool with the appropriate parameters (query, year, and page).
How to install
Prerequisites:
- Node.js >= 18
- TMDB API key from https://www.themoviedb.org/documentation/api
Installation steps:
- Clone the repository and install dependencies:
git clone https://github.com/rakeshgangwar/tmdb-mcp-server.git
cd tmdb-mcp-server
npm install
- Build the server:
npm run build
- Run the server (example):
# Ensure you have set the TMDB_API_KEY in your environment or in your MCP config
node dist/index.js
- Configure MCP settings to point to the server (see configuration section in README).
Additional notes
Notes and tips:
- When configuring, set the TMDB_API_KEY environment variable to your TMDB API key. This key is required for all API requests.
- The configuration example uses the path /path/to/tmdb-mcp-server/dist/index.js; replace with the actual built path on your system.
- Ensure you’re running Node.js >= 18 as required by the project.
- If you modify source code, rebuild with npm run build before restarting the MCP server.
- If you encounter API quota issues, check your TMDB plan and apply for a higher quota if needed.
- The server exposes at least the search_movies tool. Depending on future updates, additional tools may be added following the MCP schema.
Related MCP Servers
zen
Selfhosted notes app. Single golang binary, notes stored as markdown within SQLite, full-text search, very low resource usage
MCP -Deepseek_R1
A Model Context Protocol (MCP) server implementation connecting Claude Desktop with DeepSeek's language models (R1/V3)
mcp-fhir
A Model Context Protocol implementation for FHIR
mcp
Inkdrop Model Context Protocol Server
mcp-appium-gestures
This is a Model Context Protocol (MCP) server providing resources and tools for Appium mobile gestures using Actions API..
dubco -npm
The (Unofficial) dubco-mcp-server enables AI assistants to manage Dub.co short links via the Model Context Protocol. It provides three MCP tools: create_link for generating new short URLs, update_link for modifying existing links, and delete_link for removing short links.