Skip to main content
Glama

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.

Related MCP server: Pokemon Go MCP Server

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 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.

Available Tools

7 tools
sixflags_get_park_scheduleA
Read-only

Get operating hours (open/close times) for a Six Flags park, from today forward. Defaults to your home park. Use this to plan what time to arrive and how long you have.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNoHow many days ahead to include (default 10)
parkNoPark name, slug, or id. Defaults to your home park (Carowinds).

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so safety is covered. The description adds useful behavioral context: the temporal range and the home-park default. However, it doesn't disclose return format, pagination, or edge cases such as invalid pak names or timezone handling. Given the annotation coverage, a score of 3 is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three short sentences, each earning its place: it states the core function, the default behavior, and the intended use case. It is front-loaded and free of redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only tool with two optional parameters and no output schema, the description fully covers what an agent needs: what the tool returns, the temporal scope, and the default park. The schema and annotations cover the remaining details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage for both parameters, including defaults, so the description doesn't need to add parameter-level detail. The description does restate the park default, but adds no new meaning for parameter handling beyond what the schema already says. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('operating hours for a Six Flags park') with a clear scope ('from today forward'). It distinguishes itself from sibling tools by focusing on operating hours, not wait times, attractions, or shows. The home park default is also explicitly stated.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives a concrete use case ('plan what time to arrive and how long you have'), which clearly communicates when to invoke this tool. It doesn't explicitly describe when not to use it or name alternatives, but the presented context is clear and sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sixflags_get_showsA
Read-only

Get today’s live show schedule (showtimes) for a Six Flags park — parades, stunt shows, character meets. Defaults to your home park (Carowinds). Showtimes are only populated on operating days.

ParametersJSON Schema
NameRequiredDescriptionDefault
parkNoPark name, slug, or id. Defaults to your home park (Carowinds).

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the description adds value by disclosing the default park (Carowinds) and the operating-day population caveat. These details inform the agent about expected data availability and default behavior without contradicting annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the core purpose, followed by two useful behavioral details. Every sentence earns its place; there is no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with one optional parameter and no output schema, the description plus annotations cover all necessary context: what it does, the default park, and when data is available. Nothing critical is missing for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers the single park parameter 100%, with identical default information. The description adds no new parameter-specific meaning beyond what the schema already provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Get today’s live show schedule') and identifies the resource ('showtimes for a Six Flags park'), including the types of shows (parades, stunt shows, character meets). This clearly differentiates from siblings like wait times or generic park schedule.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: it is for today's showtimes and defaults to the home park. It also notes that showtimes are only populated on operating days. It doesn't explicitly name alternatives or when-not-to-use, but the specific show focus makes the intended use clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sixflags_get_wait_timesA
Read-only

Get current ride wait times for a Six Flags park (defaults to your home park, Carowinds). Returns every attraction with its status (operating/closed/down) and standby + single-rider waits, sorted longest-wait first, plus a summary of the park’s crowd level.

ParametersJSON Schema
NameRequiredDescriptionDefault
parkNoPark name, slug, or id. Defaults to your home park (Carowinds).
openOnlyNoOnly return currently-operating rides (default false: include closed/down)

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The readOnlyHint=true annotation covers the safety profile, and the description adds useful behavioral details: it returns all attractions, includes statuses, sorts longest-wait first, and includes a crowd-level summary. It does not disclose every edge case, but it goes beyond the annotation meaningfully.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single dense sentence that packs in the operation, default behavior, return contents, ordering, and crowd summary without filler. Every clause adds information an agent would need.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description takes the responsibility of explaining the return shape: attraction statuses, standby and single-rider waits, sorting, and crowd level. The optional parameters are directly explained by the input schema. Nothing essential for selecting and invoking the tool is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already documents both parameters at 100% coverage, including the default for park and the openOnly behavior. The description mostly reiterates what the schema says without adding deeper param-level meaning. This meets the baseline for high schema coverage but does not elevate it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') with a clear resource ('current ride wait times for a Six Flags park'), and immediately distinguishes itself from sibling tools like sixflags_get_park_schedule and sixflags_list_attractions. It also states scope and return structure, leaving no ambiguity about what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the use case clear: retrieve current ride wait times. It also notes the default park behavior, which helps agents know when no park parameter is needed. It does not explicitly contrast with alternatives, but the purpose is distinct enough among the siblings that an agent can select it correctly without explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sixflags_healthcheckA
Read-only

Check that the upstream data source (themeparks.wiki) is reachable and returning Six Flags park data. Returns ok/degraded plus the number of parks discovered.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true, and the description confirms a read-only health check. It adds specific return information (status and park count). No behavioral contradictions or missing critical details beyond what annotations cover.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no extraneous words. It efficiently conveys the tool's purpose and output.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (no parameters, no output schema), the description fully covers its behavior. It explains the inputs (none) and outputs (status and park count), making it complete for agent understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has no parameters, so the description does not need to elaborate. With zero parameters, the baseline is 4, and the description provides no additional parameter information, which is acceptable.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as a health check for the upstream data source, specifying the action (check reachability and data return) and what it returns (ok/degraded, number of parks). It is distinct from sibling tools that retrieve specific park data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is used to verify connectivity before other operations, but it does not explicitly state when to use it versus alternatives or provide exclusions. Usage is implied rather than explicitly guided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sixflags_list_attractionsA
Read-only

List the attractions (or shows / restaurants) at a Six Flags park — the full directory of what’s there, with map coordinates. Static metadata, not live status; use sixflags_get_wait_times for current waits. Defaults to your home park (Carowinds).

ParametersJSON Schema
NameRequiredDescriptionDefault
parkNoPark name, slug, or id. Defaults to your home park (Carowinds).
typeNoWhich kind of entity to list (default ATTRACTION)

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful behavioral context beyond that: the data is static metadata rather than live status, and the result includes map coordinates. This gives the agent a clearer expectation of what it will receive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three focused sentences with zero filler. The core action and scope are front-loaded, and the most important caveat (static vs. live) is placed immediately after the main behavior.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only listing tool with two optional parameters and no output schema, the description covers the essential facts: what is listed, what the output includes, how it differs from live data, and the default park. Nothing critical is missing for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters. The description adds a small amount of context by stating the park defaults to the home park (Carowinds) and mirrors the schema's default of ATTRACTION for type. It does not need to repeat parameter details, so the baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'List the attractions (or shows / restaurants) at a Six Flags park' and clarifies it returns 'the full directory' with map coordinates. It also differentiates itself from live-status tools by calling itself 'Static metadata', which helps an agent distinguish it from sixflags_get_wait_times.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells the agent when NOT to use this tool for live data, steering it to 'sixflags_get_wait_times for current waits.' It also notes the default park behavior. It does not mention the similarly-named sibling sixflags_get_shows, but the directory scope is clear enough for most selection cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sixflags_list_parksA
Read-only

List Six Flags parks (the combined Six Flags / Cedar Fair chain, including Carowinds, Cedar Point, Canada’s Wonderland, Magic Mountain, and the Hurricane Harbor water parks). Optionally filter by a name substring. Returns each park’s id, name, and owning destination, and flags your configured home park.

ParametersJSON Schema
NameRequiredDescriptionDefault
searchNoCase-insensitive substring to filter park or destination names

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare this tool read-only, and the description adds useful behavioral context: it covers the combined chain, includes water parks, returns owning destination, and flags the configured home park. There is no contradiction, and no dangerous hidden side effects are suggested.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single well-structured sentence that front-loads the main purpose, includes clarifying examples, describes the optional filter, and lists return fields. Every clause adds useful information without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only listing tool with one optional parameter and no output schema, the description is complete: it names the resource, scope, filtering behavior, and return contents. An agent can decide to call it and understand the result without additional documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the search parameter is already well documented. The description restates that filtering is optional and by name substring, but does not extend meaning much beyond the schema, only adding the broader context of park/destination naming.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific action and resource: 'List Six Flags parks', naming the combined chain and examples. It clearly identifies the tool's domain, distinguishes it from list_attractions and other sibling tools, and details the returned fields.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the tool's role obvious and explains optional name-substring filtering, but it does not explicitly state when to choose this tool over siblings such as sixflags_list_attractions or sixflags_get_park_schedule. Usage is implied rather than directly contrasted with alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sixflags_suggest_nextA
Read-only

Recommend which attraction to ride next: ranks currently-operating rides by shortest standby wait. Optionally exclude rides you’ve already done and cap the wait. Use this repeatedly through the day to keep hopping to the lowest-wait ride. Defaults to your home park (Carowinds).

ParametersJSON Schema
NameRequiredDescriptionDefault
parkNoPark name, slug, or id. Defaults to your home park (Carowinds).
limitNoHow many suggestions to return (default 5)
excludeNoRide names (case-insensitive, substring match) to skip — e.g. ones already ridden
maxWaitMinutesNoOnly suggest rides with a standby wait at or below this many minutes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The readOnlyHint annotation already signals no mutation, and the description adds meaningful behavioral context: it operates on 'currently-operating rides,' uses only 'standby wait' rather than other queue types, and is intended for repeated use during a day. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact, front-loads the core purpose in the first clause, and every sentence earns its place: purpose, ranking behavior, optional filters, usage guidance, and default park. There is no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only suggestion tool with fully documented parameters, the description covers what the tool does, how to use it, and the park default. There is no output schema, and the description does not explicitly describe the response shape, but the ranking-by-wait phrasing and limit parameter make the expected output reasonably inferable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all four parameters. The description adds contextual meaning around the main use case—'exclude rides you've already done' and 'cap the wait'—but does not substantially extend the param-level documentation, keeping this at the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Recommend which attraction to ride next,' then defines the behavior precisely as 'ranks currently-operating rides by shortest standby wait.' This clearly distinguishes it from sibling tools like get_wait_times or list_attractions, which return raw data rather than a recommendation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives explicit guidance on when to use it: 'Use this repeatedly through the day to keep hopping to the lowest-wait ride.' It also notes optional exclusions and caps and states the park default. It does not explicitly name alternatives or say when not to use it, but the use case is clearly scoped.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 6 tool updatesv2.0.0
    • Changedsixflags_get_park_schedule1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedsixflags_get_shows1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedsixflags_get_wait_times1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedsixflags_list_attractions1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedsixflags_list_parks1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedsixflags_suggest_next1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. 4 tool updatesv1.0.2
    • Addedsixflags_get_wait_times
    • Addedsixflags_healthcheck
    • Addedsixflags_list_parks
    • Addedsixflags_suggest_next
  3. 3 tool updatesv1.0.0
    • First observedsixflags_get_park_schedule
    • First observedsixflags_get_shows
    • First observedsixflags_list_attractions

TDQS

A4.2/5.0

Scored across 7 tools

Disambiguation4/5

Each tool targets a distinct purpose: listing parks, getting schedules, wait times, attractions, shows, recommendations, and health. The only mild overlap is between sixflags_get_wait_times and sixflags_suggest_next, but the latter is clearly framed as a recommendation layer on top of wait data.

Naming Consistency4/5

All tools share the sixflags_ prefix and mostly follow a get_/list_ + noun pattern (get_wait_times, list_attractions, get_shows). Minor deviations include healthcheck (no object) and suggest_next (verb phrase), but the overall pattern is predictable and readable.

Tool Count5/5

Seven tools is well-scoped for a theme park assistant: park discovery, schedules, attractions, wait times, shows, recommendations, and a healthcheck. Each tool has a clear role and none feel redundant or unnecessary.

Completeness4/5

The tool surface covers the main theme-park information needs: finding parks, checking hours, listing attractions, getting live wait times, and viewing show schedules. A minor gap is the lack of direct park-level info like dining or ticket details, but the core use cases are well covered.

Maintenance

ActivityActive
ResponsivenessSlow

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    A unified MCP server for US transit systems, supporting Washington DC Metro and NYC Subway with real-time predictions, station info, and service alerts.
    388 npm
    4
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    MCP server for MaxPreps that reads US high school team schedules, scores, records, rosters, stat leaders, and athlete careers without needing an account or API key.
    15
    235 npm
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server that turns real NFL & fantasy data into a decisive edge, offering 70+ tools for draft assistance, start/sit recommendations, trade analysis, playoff odds, and more, with live league integration.
    MIT