Public MCP · Berlin · No auth

Berlin cinema data,
ready for your agent.

A public, no-auth Model Context Protocol endpoint and installable agent skill for all 14 Yorck cinemas in Berlin. Find showtimes, browse seat maps, plan a movie night — from any LLM, agent, or curl.

14 cinemas ~570 showtimes / week SVG seat maps No API key

What you get

One public endpoint

Streamable HTTP + SSE MCP at yorck-mcp.isiklimahir.workers.dev. REST too — for one-shot curl.

Real Yorck data

All films, showtimes, formats (OV/OmU/OmeU), cinemas, districts, seat plans, and seat-map SVGs.

One-line install

A drop-in skill that teaches your agent how to call the endpoint, with example queries and a bash helper.

Zero auth

Read-only public surface. No key, no signup, no rate-limit headaches for ordinary use.

Berlin-native

14 venues from Kreuzberg to Charlottenburg. The skill knows formats, district groupings, and the cinemas your agent should suggest by neighbourhood.

Agent-ready

Works with Claude Desktop, Cursor, Pi, Hermes-style agents, or any custom LLM tool loop.

Install

Best path: ask your agent to run this command. It installs the skill into ~/.pi/agent/skills/yorck.

# one-line install
curl -fsSL https://yorck-mcp-skill.pages.dev/install.sh | bash
View install.sh View SKILL.md

Agent install prompt

Paste this into your coding agent (Claude Code, Cursor, Pi, Codex) and it'll install + verify the skill for you.

Install the Yorck Cinema agent skill. Run:

  curl -fsSL https://yorck-mcp-skill.pages.dev/install.sh | bash

Then verify by calling:

  ~/.pi/agent/skills/yorck/scripts/yorck.sh search "devil"

The skill lives at ~/.pi/agent/skills/yorck and teaches you
how to query the public Yorck MCP at:
  https://yorck-mcp.isiklimahir.workers.dev

Connect as an MCP server

Drop this into Claude Desktop, Cursor, or any MCP-compatible client config.

{
  "mcpServers": {
    "yorck": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://yorck-mcp.isiklimahir.workers.dev/public/mcp"
      ]
    }
  }
}

Endpoints

All endpoints are public read-only. Booking, account state, and authenticated routes are not exposed here.

The 14 Yorck cinemas

Yorck · Kreuzberg Babylon Kreuzberg delphi LUX · Charlottenburg Delphi Filmpalast Cinema Paris Kant Kino Capitol Dahlem Kino International · Mitte Filmtheater am Friedrichshain Blauer Stern · Pankow Rollberg · Neukölln Passage · Neukölln Neues Off · Neukölln Odeon · Schöneberg

Try it right now

Anyone can hit these in a terminal — no key needed.

# what's playing
curl "https://yorck-mcp.isiklimahir.workers.dev/v1/films"

# search for a film
curl "https://yorck-mcp.isiklimahir.workers.dev/v1/films/search?q=devil"

# list all 14 cinemas
curl "https://yorck-mcp.isiklimahir.workers.dev/v1/cinemas"

# the helper after install
~/.pi/agent/skills/yorck/scripts/yorck.sh search "sandra hüller"