movieplexx-mcp
This server provides read-only access to the current and historical cinema program of Movieplexx Buchholz, allowing you to browse films, showtimes, and scrape history.
List Showtimes (
list_showtimes): Retrieve performances with optional filters by date (YYYY-MM-DD), film slug, and whether only upcoming shows should be returned.Get Film Details (
get_film): Fetch the full record for a specific film by its slug, including metadata such as formats and booking links.List Films (
list_films): Get all known films in the database, optionally restricted to those with upcoming performances (defaults totrue).Search Films (
search_films): Perform a case-insensitive substring search across film title, genre, director, or distributor.Film History (
film_history): Access the append-only scrape history of a film's performances, useful for tracking changes like sold-out status over time.
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., "@movieplexx-mcpshowtimes for Dune 2 today"
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.
movieplexx-mcp
MCP server that mirrors and historically archives the current cinema program of Movieplexx Buchholz.
It polls the cinema's internal JSON endpoint
(https://movieplexx.de/programm/api/filtered-films) — which returns every
current film with all showtimes, booking links, formats and metadata in a single
response — normalizes it into SQLite, keeps an append-only history log, and
exposes the data read-only to an MCP client.
Architecture
One image, two roles selected by command:
scraper (CLI) ── hourly ──▶ SQLite (volume) ── read-only ──▶ mcp-server (stdio) ──▶ Claudescrape— fetch, upsert current performances, append a history snapshotserve— run the MCP server (stdio), reading the same DB read-only
Related MCP server: Cinema Scheduler
Layout
src/movieplexx/scrape.py— HTTP fetch + normalization of the API responsesrc/movieplexx/store.py— SQLite schema, upsert, append-only historysrc/movieplexx/cli.py—scrape [--loop],servesrc/movieplexx/server.py— FastMCP tools
Local usage
uv sync
DB_PATH=./movieplexx.db uv run movieplexx scrape # one fetch + store
DB_PATH=./movieplexx.db uv run movieplexx serve # MCP server over stdioConfiguration (environment)
Variable | Default | Purpose |
|
| SQLite file location |
|
| Source endpoint |
|
| Self-identifying UA |
|
| Loop interval for |
|
| Prometheus endpoint port in loop mode ( |
|
|
|
|
| HTTP bind address ( |
|
| HTTP port ( |
|
| HTTP endpoint path ( |
| — | Comma-separated |
| — | Bearer token; required for |
| — | Path to a TLS certificate; terminates HTTPS directly in the server. Must be set together with |
| — | Path to the matching TLS private key ( |
|
| Logging level |
MCP tools
list_showtimes(date?, film_slug?, only_upcoming?)— performances, filterableget_film(film_slug)— full film recordlist_films(only_current?)— all known filmssearch_films(query)— substring search over title/genre/director/distributorfilm_history(film_slug)— append-only scrape history (sold-out / status drift)
Registering with an MCP client
The server speaks stdio. Add it to your client's server config (e.g. Claude
Desktop's claude_desktop_config.json). It only reads the DB, so populate it
first with at least one scrape.
Local (via uv):
{
"mcpServers": {
"movieplexx": {
"command": "uv",
"args": ["run", "movieplexx", "serve"],
"cwd": "/absolute/path/to/movieplexx-mcp",
"env": { "DB_PATH": "/absolute/path/to/movieplexx-mcp/movieplexx.db" }
}
}
}Docker (reads the shared moviedata volume the scraper writes):
{
"mcpServers": {
"movieplexx": {
"command": "docker",
"args": ["run", "-i", "--rm", "-v", "moviedata:/data:ro", "movieplexx-mcp", "serve"]
}
}
}Docker
docker compose up -d # runs scraper (hourly loop) + shared volumeThe MCP server is typically launched on demand by the client, e.g.:
docker run -i --rm -v moviedata:/data:ro movieplexx-mcp serveRemote serving on a NAS (HTTP transport)
By default serve speaks stdio and is spawned locally by the client. To run the
server long-lived on a NAS and reach it from your local Claude over the LAN, set
MCP_TRANSPORT=http. The endpoint is protected by a static bearer token and
refuses to start without MCP_AUTH_TOKEN.
Generate a token and start the networked mcp service (see docker-compose.yml,
which binds the port to the NAS LAN IP — adjust 192.168.1.50):
echo "MCP_AUTH_TOKEN=$(openssl rand -hex 32)" >> .env # .env is gitignored
echo "MCP_ALLOWED_HOSTS=192.168.1.50:8000" >> .env # the LAN address clients connect to
docker compose up -d mcpThe server validates the incoming Host header (DNS-rebinding protection) and
otherwise only trusts localhost/127.0.0.1/::1. Without MCP_ALLOWED_HOSTS
set to the address in the URL above, remote requests fail with
421 Invalid Host header even though the bearer token is correct.
Register the remote server with your local Claude:
Claude Code (CLI) — native HTTP transport:
claude mcp add --transport http movieplexx http://192.168.1.50:8000/mcp \
--header "Authorization: Bearer <TOKEN>"Claude Desktop — no native remote-HTTP client, so use the mcp-remote
stdio↔HTTP bridge instead. Pass the full header
through env to avoid whitespace-splitting in --header:
{
"mcpServers": {
"movieplexx": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://192.168.1.50:8000/mcp",
"--header", "Authorization:${AUTH_HEADER}"],
"env": { "AUTH_HEADER": "Bearer <TOKEN>" }
}
}
}Quick smoke test (no token → 401):
curl -s -o /dev/null -w '%{http_code}\n' http://192.168.1.50:8000/mcp # 401Without TLS, the bearer token travels in cleartext on the wire — anyone who can
observe the LAN segment can read it. To terminate HTTPS directly in the server,
set MCP_TLS_CERTFILE/MCP_TLS_KEYFILE (both required together) and use
https:// in the client config and smoke test above. A self-signed cert is
enough for LAN use:
openssl req -x509 -newkey rsa:2048 -nodes -days 825 \
-keyout mcp-key.pem -out mcp-cert.pem -subj "/CN=192.168.1.50"
echo "MCP_TLS_CERTFILE=/data/mcp-cert.pem" >> .env
echo "MCP_TLS_KEYFILE=/data/mcp-key.pem" >> .envThis is intended for a trusted LAN. For off-LAN access put Tailscale/WireGuard in
front; for public exposure add a TLS reverse proxy. See spec.md §10.
Container image (GHCR)
Multiarch images (linux/amd64, linux/arm64) are published to the GitHub
Container Registry by .github/workflows/docker-publish.yml:
ghcr.io/zahlenhelfer/movieplexx-mcpTag | Published on | Meaning |
| every push to | latest development build |
| a published GitHub release | semver-pinned build |
| a published GitHub release | newest release (never |
Pull and run the published image instead of building locally:
docker pull ghcr.io/zahlenhelfer/movieplexx-mcp:latest
# scraper (hourly loop)
docker run -d --rm -v moviedata:/data ghcr.io/zahlenhelfer/movieplexx-mcp:latest scrape --loop
# MCP server (launched on demand by the client)
docker run -i --rm -v moviedata:/data:ro ghcr.io/zahlenhelfer/movieplexx-mcp:latest serveThe image is public — no docker login needed to pull. To cut a release image,
tag a commit and publish a GitHub release (vX.Y.Z); the workflow builds the
semver and latest tags.
Metrics
In loop mode the scraper serves Prometheus metrics on :${METRICS_PORT}/metrics:
movieplexx_scrape_success_total/movieplexx_scrape_failure_totalmovieplexx_scrape_duration_seconds(histogram)movieplexx_films_seen/movieplexx_performances_seen(last cycle)movieplexx_parse_errors_total— increments on a film that fails to normalize; alert on> 0to catch upstream schema drift.
Tests
uv run pytesttests/test_contract.py parses a checked-in golden snapshot
(tests/fixtures/filtered-films.golden.json) and asserts the exact field shape
the normalizer relies on. A failure means the upstream JSON drifted — regenerate
the snapshot (command in the test's docstring) once the change is understood.
Etiquette
Honors robots.txt (/programm/* is allowed), uses a self-identifying User-Agent
with a contact address, and defaults to one request per hour.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/zahlenhelfer/movieplexx-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server