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

sixflags-mcp

v1.0.2

Published

Six Flags MCP server for Claude — live wait times, park hours, shows, and day planning (Carowinds and the whole chain)

Readme

sixflags-mcp

MCP server for Six Flags theme parks — live ride wait times, park hours, show schedules, and day planning. Your home park (default Carowinds) is the default for every tool, so "what are the wait times?" just works. Covers the whole combined Six Flags / Cedar Fair chain: Cedar Point, Kings Island, Canada's Wonderland, Magic Mountain, the Hurricane Harbor water parks, and more.

Data comes from the public themeparks.wiki API — no account, no API key, no login.

Built and maintained by AI. This codebase is developed and maintained by Claude (Claude Code). Use at your own discretion.

Tools

| Tool | What it does | | --- | --- | | sixflags_get_wait_times | Every ride's current standby + single-rider wait and status, sorted longest-first, with a crowd summary. | | sixflags_suggest_next | Ranks currently-open rides by shortest wait — the "what should we ride next?" planner. Supports exclude, maxWaitMinutes, limit. | | sixflags_get_park_schedule | Operating hours from today forward. | | sixflags_get_shows | Today's live show schedule (parades, stunt shows, character meets) with showtimes. | | sixflags_list_attractions | The full directory of a park's rides / shows / restaurants, with map coordinates. | | sixflags_list_parks | Every Six Flags park and its id; search to filter. | | sixflags_healthcheck | Confirm the upstream data source is reachable. |

Every data tool takes an optional park argument (name, slug, unique substring, or id). Omit it for your home park.

Install

Via npx (published to npm):

{
  "mcpServers": {
    "sixflags": {
      "command": "npx",
      "args": ["-y", "sixflags-mcp"],
      "env": { "SIXFLAGS_HOME_PARK": "Carowinds" }
    }
  }
}

Or as a Claude Code plugin from the chrischall marketplace, or install the .mcpb bundle from a release.

Hosted connector (claude.ai)

This server can also run as a hosted Cloudflare Worker — an unlisted, shareable "remote connector" you add to claude.ai (Settings → Connectors → Add custom connector) instead of running it locally. It works on Claude web, desktop, and mobile alike, since connectors added on any of those sync to the rest, and it exposes the full tool surface above.

Because themeparks.wiki is keyless, the login page asks for no credentials — just your home park, saved as the default for tools that don't name one. Nothing secret is collected or stored.

Standing it up requires a Cloudflare account and is a one-time manual step for whoever hosts it; after that every release redeploys the Worker automatically (and Actions → deploy-connector → Run workflow deploys any ref on demand) — see docs/DEPLOY-CONNECTOR.md for the full runbook.

Configuration

All optional — the upstream is keyless.

| Env var | Default | Purpose | | --- | --- | --- | | SIXFLAGS_HOME_PARK | Carowinds | Default park for tools that don't name one. A park name, themeparks.wiki slug, or park id. | | SIXFLAGS_REQUEST_TIMEOUT_MS | 15000 | Per-request timeout. | | SIXFLAGS_USER_AGENT | sixflags-mcp (+…) | User-Agent sent to themeparks.wiki. |

Development

npm install
npm run build          # tsc → dist/, then esbuild bundle → dist/bundle.js
npm test               # vitest run
npm run test:coverage  # 100% coverage gate (CI)
npm run dev            # node --env-file=.env dist/index.js (requires a build)

Data source & accuracy

Wait times, show times, and hours are provided by themeparks.wiki, which aggregates the parks' own apps. They populate only during operating hours — off-hours every ride reads CLOSED. Treat waits as best-effort estimates, not guarantees.