IMDB MCP Server
IMDB MCP Server
Ein in der Cloud ausführbarer JSON-RPC-Dienst, der Zugriff auf IMDB-Daten bietet. Entwickelt für die Arbeit mit LLMs über das MCP (Model Context Protocol).
So funktioniert es
LLM-Konfiguration: Fügen Sie die MCP-Server-URL zur Konfiguration Ihres LLM hinzu.
Discovery: Das LLM fragt die Server-URL ab, um die verfügbaren Tools zu verstehen.
Abfrage: Das LLM sendet JSON-RPC-Anfragen, um IMDB-Daten abzurufen.
Antwort: Der Server gibt strukturierte Daten zurück, die das LLM interpretiert und den Benutzern erklärt.
Related MCP server: IMDB MCP Server
Endpunkte
Endpunkt | Methode | Beschreibung |
| GET | HTML-Dokumentation (menschenlesbar) |
| GET | Serviceinformationen (JSON) |
| POST | JSON-RPC-2.0-Endpunkt |
| POST | MCP-Protokoll-Endpunkt für LLM-Toolaufrufe |
| GET | Health-Check für Cloud-Bereitstellungen |
Verfügbare Tools
Tool | Beschreibung | Parameter |
| Filme nach Titel suchen |
|
| Vollständige Filminformationen abrufen |
|
| Schauspieler/Regisseure suchen |
|
| Personeninfo/Filmografie abrufen |
|
| IMDB Top 250 abrufen |
|
| Besetzung eines Films abrufen |
|
JSON-RPC-Nutzung
Senden Sie eine POST-Anfrage an /jsonrpc:
{
"jsonrpc": "2.0",
"method": "search_movies",
"params": {"query": "The Matrix", "limit": 5},
"id": 1
}Antwort:
{
"jsonrpc": "2.0",
"result": [
{"id": "0133093", "title": "The Matrix", "year": 1999},
{"id": "0234215", "title": "The Matrix Reloaded", "year": 2003}
],
"id": 1
}LLM-MCP-Konfiguration
Fügen Sie Folgendes zur MCP-Server-Konfiguration Ihres LLM hinzu:
{
"mcpServers": {
"imdb": {
"url": "https://your-deployed-url.com/mcp",
"transport": "http"
}
}
}Lokale Entwicklung
Lokal ausführen
pip install -r requirements.txt
python app.pyDer Server läuft unter http://localhost:8080.
Mit Docker ausführen
docker build -t imdb-mcp .
docker run -p 8080:8080 imdb-mcpCloud-Bereitstellung
Cloud Foundry
cf pushVerwendet die manifest.yaml-Konfiguration.
SAP BTP (Cloud Foundry)
# Build MTA archive
mbt build
# Deploy
cf deploy mta_archives/imdb-mcp-server_1.0.0.mtarVerwendet die mta.yaml-Konfiguration.
Heroku
heroku create imdb-mcp-server
git push heroku mainVerwendet Procfile und runtime.txt.
Docker (beliebige 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
Verwenden Sie das Dockerfile mit Ihrem bevorzugten AWS-Containerdienst.
Projektstruktur
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 patternsUmgebungsvariablen
Variable | Standard | Beschreibung |
| 8080 | Server-Port |
Hinweise
Cinemagoer fragt IMDB über Web Scraping ab; die Antworten können langsamer sein als bei API-basierten Lösungen.
Nur für nicht-kommerzielle Zwecke (gemäß den IMDB-Nutzungsbedingungen).
Kein API-Schlüssel erforderlich.
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