MCP server for The Movie Database
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tmdb": {
"env": {
"TMDB_API_KEY": "your_api_key_here"
},
"args": [
"--mode",
"stdio"
],
"command": "/absolute/path/to/tmdb-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides Claude and other MCP clients access to The Movie Database (TMDB) API.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment / data
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP Security Weekly
Get CVE alerts and security updates for Tmdb Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides Claude and other MCP clients access to The Movie Database (TMDB) API.
This server works in two modes:
# Clone the repository
git clone https://github.com/stormino/tmdb-mcp-server.git
cd tmdb-mcp-server
# Install dependencies
go mod tidy
# Build the server
go build -o tmdb-mcp-server
Set your TMDB API key as an environment variable:
export TMDB_API_KEY=your_api_key_here
Build the server (see Installation above)
Configure Claude Desktop by editing the config file:
~/Library/Application Support/Claude/claude_desktop_config.json~/.config/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd this configuration:
{
"mcpServers": {
"tmdb": {
"command": "/absolute/path/to/tmdb-mcp-server",
"args": ["--mode", "stdio"],
"env": {
"TMDB_API_KEY": "your_api_key_here"
}
}
}
}
Restart Claude Desktop
Ask Claude things like:
Run the server in HTTP mode:
./tmdb-mcp-server --mode http --port 8080
# Or use make:
make run-http
Option 1: MCP Inspector (Recommended)
# Terminal 1: Start server
make run-http
# Terminal 2: Open MCP Inspector
make inspector
# Or: npx @modelcontextprotocol/inspector
Then connect to http://localhost:8080 in the inspector UI at http://localhost:5173
Option 2: cURL
# Test with curl (in another terminal)
make test-http
Option 3: Connect from claude.ai
ngrok http 8080)https://your-ngrok-url.ngrok.ioFor detailed testing instructions, see TEST_HTTP_MODE.md
./tmdb-mcp-server [options]
Options:
--mode string
Transport mode: stdio or http (default "stdio")
Can also be set via MCP_MODE environment variable
--port string
HTTP port, only used in http mode (default "8080")
Can also be set via HTTP_PORT environment variable
| Tool Name | Description | Input |
|---|---|---|
search_movies | Search for movies by title | query, year (optional) |
get_movie_details | Get detailed movie information | movie_id |
get_trending | Get trending movies | time_window (day/week) |
search_person | Search for people | query |
get_person_details | Get person details and filmography | person_id |
get_recommendations | Get movie recommendations | movie_id, limit |
discover_movies | Advanced movie search with filters | genre, year, min_rating, etc. |
Following, a bunch of very complex prompts to test and explore the MCP server capabilities.