IMDB MCP Server
Provides tools for searching movies and people, retrieving movie and person details, fetching the IMDb Top 250, and getting movie cast information.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@IMDB MCP ServerWhat movies did Christopher Nolan direct?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
IMDB MCP Server
A cloud-runnable JSON-RPC service that provides access to IMDB data. Designed to work with LLMs via the MCP (Model Context Protocol).
How It Works
LLM Configuration: Add the MCP server URL to your LLM's configuration
Discovery: The LLM queries the server URL to understand available tools
Query: The LLM sends JSON-RPC requests to fetch IMDB data
Response: The server returns structured data that the LLM interprets and explains to users
Related MCP server: IMDB MCP Server
Endpoints
Endpoint | Method | Description |
| GET | HTML documentation (human-readable) |
| GET | Service information (JSON) |
| POST | JSON-RPC 2.0 endpoint |
| POST | MCP protocol endpoint for LLM tool calling |
| GET | Health check for cloud deployments |
Available Tools
Tool | Description | Parameters |
| Search movies by title |
|
| Get full movie info |
|
| Search actors/directors |
|
| Get person info/filmography |
|
| Get IMDB Top 250 |
|
| Get cast of a movie |
|
JSON-RPC Usage
Send a POST request to /jsonrpc:
{
"jsonrpc": "2.0",
"method": "search_movies",
"params": {"query": "The Matrix", "limit": 5},
"id": 1
}Response:
{
"jsonrpc": "2.0",
"result": [
{"id": "0133093", "title": "The Matrix", "year": 1999},
{"id": "0234215", "title": "The Matrix Reloaded", "year": 2003}
],
"id": 1
}LLM MCP Configuration
Add to your LLM's MCP server configuration:
{
"mcpServers": {
"imdb": {
"url": "https://your-deployed-url.com/mcp",
"transport": "http"
}
}
}Local Development
Run locally
pip install -r requirements.txt
python app.pyServer runs at http://localhost:8080
Run with Docker
docker build -t imdb-mcp .
docker run -p 8080:8080 imdb-mcpCloud Deployment
Cloud Foundry
cf pushUses manifest.yaml configuration.
SAP BTP (Cloud Foundry)
# Build MTA archive
mbt build
# Deploy
cf deploy mta_archives/imdb-mcp-server_1.0.0.mtarUses mta.yaml configuration.
Heroku
heroku create imdb-mcp-server
git push heroku mainUses Procfile and runtime.txt.
Docker (Any Cloud)
# Build
docker build -t imdb-mcp .
# Run
docker run -p 8080:8080 imdb-mcp
# Push to registry
docker tag imdb-mcp your-registry/imdb-mcp:latest
docker push your-registry/imdb-mcp:latestGoogle Cloud Run
gcloud run deploy imdb-mcp \
--source . \
--platform managed \
--allow-unauthenticatedAWS App Runner / ECS
Use the Dockerfile with your preferred AWS container service.
Project Structure
imdb-mcp/
├── app.py # FastAPI JSON-RPC server
├── imdb_backend.py # Cinemagoer wrapper
├── server.py # FastMCP server (for local MCP)
├── requirements.txt # Python dependencies
├── pyproject.toml # Project metadata
├── Dockerfile # Container image
├── Procfile # Heroku/PaaS process file
├── runtime.txt # Python version
├── manifest.yaml # Cloud Foundry manifest
├── mta.yaml # SAP BTP MTA descriptor
├── .dockerignore # Docker ignore patterns
└── .cfignore # Cloud Foundry ignore patternsEnvironment Variables
Variable | Default | Description |
| 8080 | Server port |
Notes
Cinemagoer queries IMDB via web scraping, responses may be slower than API-based solutions
For non-commercial use only (per IMDB terms of service)
No API key required
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to search and retrieve movie information from The Movie Database (TMDB) API through the Model Context Protocol interface.202MIT
- FlicenseNot gradedqualityDmaintenanceProvides access to IMDB movie and person data, including searches, cast details, and top-rated lists through the Model Context Protocol. It enables LLMs to fetch structured cinematic metadata and filmographies using the Cinemagoer backend.1
- FlicenseAqualityDmaintenanceAn MCP server that wraps The Movie Database (TMDB) API, enabling search for movies and TV shows, retrieval of movie details, recommendations, similar movies, trending content, streaming providers, and movie discovery.8
- AlicenseAqualityCmaintenanceMCP server for the OMDb API - search movies, series, and episodes from any MCP-compatible client.5MIT
Related MCP Connectors
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
Real-time Amazon, WIPO & PACER data for AI agents — 19 tools via the MCP protocol.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Adarsh2001-dot/imdb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server