IMDb MCP Server
Enables searching, discovering, and playing movies from IMDb via a Model Context Protocol server with a playback layer and monitoring dashboard.
README
IMDb MCP Server 🎬
A powerful Model Context Protocol (MCP) server for searching, discovering, and playing content from IMDb. Built with FastMCP, this server provides a robust bridge between LLMs and movie metadata, featuring a custom playback layer and a modern web dashboard.
✨ Features
- 🚀 FastMCP Engine: High-performance MCP implementation over streamable HTTP.
- 🔍 Intelligent Search: Patched search logic using the IMDb Autocomplete API for reliable, unauthenticated title discovery.
- 📺 Playback Layer: Direct integration with
playimdb.comfor instant streaming links. - 📊 Monitoring Dashboard: Password-protected WebUI to monitor metrics, tools, and health in real-time.
- 🐳 Docker Ready: Optimized multi-stage Dockerfile for easy deployment.
- 🤖 GitHub Actions: Automated CI/CD workflow to build and push images to GHCR on release tags.
🛠️ Tools Included
| Tool | Description |
|---|---|
imdb_search_title |
Search for movies, series, or games. Returns clean metadata including IDs. |
imdb_get_public_list_items |
Fetch all items from any public IMDb list by its ID. |
play_movie |
Generates a direct playimdb.com streaming URL for a given IMDb ID. |
search_and_play |
The Ultimate Tool: Searches for a title and returns the play URL + full details in a single call. |
🚀 Quick Start
1. Install dependencies
npm install
2. Configure Environment
cp .env.example .env
Edit .env to set your WEBUI_PASSWORD.
3. Run Development Server
npm run dev
🌐 Endpoints
- MCP Endpoint:
http://127.0.0.1:8080/mcp - Dashboard:
http://127.0.0.1:8080/dashboard - Health Check:
http://127.0.0.1:8080/health
🐳 Docker Deployment
Build the image locally:
docker build -t imdb-mcp .
Run the container:
docker run --rm \
-p 8080:8080 \
-e HOST=0.0.0.0 \
-e PORT=8080 \
-e WEBUI_PASSWORD=your-secure-password \
-e WEBUI_SESSION_SECRET=your-secret \
imdb-mcp
Docker Compose
Alternatively, use Docker Compose to manage the container:
docker-compose up -d
Example docker-compose.yml:
services:
imdb-mcp:
image: ghcr.io/danish-mar/imdb-mcp:latest
ports:
- "8080:8080"
environment:
- WEBUI_PASSWORD=your-password
📁 Project Structure
src/
index.ts # Entry point & Server initialization
config.ts # App configuration & Env loading
server.ts # FastMCP instance setup
tools/ # IMDb tool implementations (Search, Playback, etc.)
webui/ # Hono routes for the dashboard
lib/ # Auth & formatting utilities
views/ # EJS templates for the WebUI
.github/ # GitHub Actions workflows for Docker publishing
📝 Notes
- Search Patch: This server uses a custom fallback to the IMDb Autocomplete API because the standard
imdb-coreGraphQL hashes are currently outdated. - Authentication: Most tools are stateless and don't require IMDb cookies. For private list access, you can extend the
imdbClientsession insrc/tools/index.ts. - Playback: Playback URLs point to third-party providers; use responsibly.
Built with ❤️ using FastMCP and TypeScript.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.