sixflags-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SIXFLAGS_HOME_PARK | No | Default park for tools that don't name one. A park name, themeparks.wiki slug, or park id. | Carowinds |
| SIXFLAGS_USER_AGENT | No | User-Agent sent to themeparks.wiki. | sixflags-mcp (+…) |
| SIXFLAGS_REQUEST_TIMEOUT_MS | No | Per-request timeout. | 15000 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| sixflags_list_parksA | 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. |
| sixflags_get_park_scheduleA | 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. |
| sixflags_get_wait_timesA | 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. |
| sixflags_suggest_nextA | 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). |
| sixflags_list_attractionsA | 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). |
| sixflags_get_showsA | 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. |
| sixflags_healthcheckA | 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. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
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.
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.
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.
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.