Model Context Protocol Server
A powerful Model Context Protocol server that provides AI agents with seamless access to The Movie Database (TMDB) API for movies, TV shows, and trending content.
http://localhost:3000/api/mcpThis is a streamable HTTP endpoint that follows the Model Context Protocol specification. Configure your AI agent or IDE to connect to this endpoint to enable TMDB tools.
Search for movies by title with language support
Get detailed information about a specific movie
Get trending movies, TV shows, or people
Discover movies by various filters
Search for TV shows by title with language support
Get detailed information about a specific TV show
Official Claude desktop app
{
"mcpServers": {
"tmdb": {
"transport": {
"type": "http",
"url": "http://localhost:3000/api/mcp"
}
}
}
}AI-powered code editor
{
"tmdb": {
"transport": {
"type": "http",
"url": "http://localhost:3000/api/mcp"
}
}
}AI-first IDE by Codeium
Server Name: tmdb
Transport Type: HTTP
Endpoint URL: http://localhost:3000/api/mcpAutonomous coding agent for VS Code
{
"cline.mcpServers": {
"tmdb": {
"transport": {
"type": "http",
"url": "http://localhost:3000/api/mcp"
}
}
}
}Open-source AI autopilot for VS Code & JetBrains
{
"mcpServers": [
{
"name": "tmdb",
"transport": {
"type": "http",
"url": "http://localhost:3000/api/mcp"
}
}
]
}Configure custom MCP servers in ChatGPT
Note: ChatGPT MCP integration requires the desktop application and may have specific requirements for HTTP endpoints.
http://localhost:3000/api/mcpRun the development server to make the MCP endpoint available:
bun run devFollow the installation instructions above for your preferred AI agent or IDE
Use the available tools to search movies, get details, discover content, and more!
Streamable HTTP endpoint for real-time responses without state management overhead
Support for multiple languages with ISO 639-1 language codes
Built with TypeScript for reliable tool definitions and parameter validation