Back to Browse

Sixflags MCP Server

Developer ToolsModerate7.0Local
Free

Six Flags MCP for Claude — live wait times, park hours, shows, and day planning

About

Six Flags MCP for Claude — live wait times, park hours, shows, and day planning

Security Report

7.0
Moderate7.0Moderate Risk

A well-structured MCP server for Six Flags theme park data with solid code quality, proper authentication-free design (leveraging a public API), and appropriate permissions. No security vulnerabilities detected. Minor areas for improvement include broad exception handling and some input validation enhancements, but these do not materially impact security. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 1 high severity). Package verification found 1 issue.

7 files analyzed · 7 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Default park for tools that don't name one. A park name, themeparks.wiki slug, or park id. Defaults to Carowinds.Optional

Environment variable: SIXFLAGS_HOME_PARK

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-chrischall-sixflags-mcp": {
      "env": {
        "SIXFLAGS_HOME_PARK": "your-sixflags-home-park-here"
      },
      "args": [
        "-y",
        "sixflags-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub 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

ToolWhat it does
sixflags_get_wait_timesEvery ride's current standby + single-rider wait and status, sorted longest-first, with a crowd summary.
sixflags_suggest_nextRanks currently-open rides by shortest wait — the "what should we ride next?" planner. Supports exclude, maxWaitMinutes, limit.
sixflags_get_park_scheduleOperating hours from today forward.
sixflags_get_showsToday's live show schedule (parades, stunt shows, character meets) with showtimes.
sixflags_list_attractionsThe full directory of a park's rides / shows / restaurants, with map coordinates.
sixflags_list_parksEvery Six Flags park and its id; search to filter.
sixflags_healthcheckConfirm 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.

Configuration

All optional — the upstream is keyless.

Env varDefaultPurpose
SIXFLAGS_HOME_PARKCarowindsDefault park for tools that don't name one. A park name, themeparks.wiki slug, or park id.
SIXFLAGS_REQUEST_TIMEOUT_MS15000Per-request timeout.
SIXFLAGS_USER_AGENTsixflags-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.

Reviews

No reviews yet

Be the first to review this server!