npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

yorck-mcp

v0.1.8

Published

CLI and MCP tools for Yorck Berlin cinema.

Readme

yorck-mcp

CLI and MCP tools for Yorck Berlin cinema.

  • Public search, film lookup, cinemas, seat maps, and ICS calendar files need no account.
  • Manual planning is usable without Yorck Unlimited. It returns showtimes, seat maps, calendar files, and a checkout link.
  • Automated booking is local and opt-in. Today it needs your own Yorck account email, password, and Yorck Unlimited card number.
  • Real automated booking is never the default. Dry run validates Unlimited pricing and releases the seat hold.

CLI

npx yorck-mcp whats-on --when tonight --after 18:00 --cinemas passage,rollberg
npx yorck-mcp search "devil wears prada"
npx yorck-mcp seat-map 1007-30456 --out seat-map.svg
npx yorck-mcp seat-map-html 1007-30456 --out seat-map.html
npx yorck-mcp calendar 1007-30456 the-devil-wears-prada-2 --out movie.ics

Plan a manual booking, no account needed:

npx yorck-mcp plan --q "devil wears prada" --when tonight --after 18:00

This returns a checkout seat-selection link, for example https://www.yorck.de/en/checkout/seats?sessionid=..., plus the matching film, cinema, time, and a seat-plan summary. The manual flow lets the user choose seats on Yorck's page.

Booking

Dry run:

YORCK_EMAIL="[email protected]" \
YORCK_PASSWORD="..." \
YORCK_UNLIMITED_CARD="..." \
npx yorck-mcp book-best --q "devil wears prada" --when tonight --after 18:00

Real booking requires --commit --yes:

YORCK_EMAIL="[email protected]" \
YORCK_PASSWORD="..." \
YORCK_UNLIMITED_CARD="..." \
npx yorck-mcp book-best --q "devil wears prada" --when tonight --after 18:00 --commit --yes

You do not need to provide a separate member ID. The Yorck login response includes it when the account has one, and the booking flow uses it internally.

Skill install

Install a Claude Code skill that teaches the agent which Yorck tool to use in each environment:

npx yorck-mcp install-skill --target claude

Or from the hosted page:

curl -fsSL https://yorck-mcp.isiklimahir.workers.dev/install.sh | bash

The skill includes guidance for Claude Web remote connectors, Claude Code local MCP, inline HTML seat-map fallback, and confirmation-gated booking.

MCP

Read-only remote MCP:

npx yorck-mcp mcp-config

Bookable local stdio MCP:

npx yorck-mcp mcp-config --private

Equivalent config:

{
  "mcpServers": {
    "yorck": {
      "command": "npx",
      "args": ["-y", "yorck-mcp", "mcp-stdio"],
      "env": {
        "YORCK_EMAIL": "[email protected]",
        "YORCK_PASSWORD": "...",
        "YORCK_UNLIMITED_CARD": "..."
      }
    }
  }
}

Hosted public MCP endpoint:

https://yorck-mcp.isiklimahir.workers.dev/public/mcp