Skip to main content
Glama

ParkAlert MCP

An MCP server that exposes Disney ride status and wait times as on-demand tools, backed by the ThemeParks.wiki API.

This is the pull-based sibling of ParkAlert, a PWA that polls the same API on a timer and pushes a notification through ntfy.sh when a ride goes down or comes back up. ParkAlert answers "tell me when something changes." This server answers "what is the situation right now, because I just asked." The API client is ported from ParkAlert's server/themeparks.js; the polling loop, the transition detection, the trip codes, and the notification fan-out are all deliberately left behind.

Tools

Tool

Arguments

Answers

get_ride_status

park, ride

Is this ride operating, down, or closed right now?

get_wait_time

park, ride

How long is the standby line right now?

Both tools accept a park by name, alias, or ThemeParks.wiki entity ID ("Magic Kingdom", "dhs", "epcot"), and a ride by however a person would say it — partial and near-miss names such as "space mountain" or "tron" are matched, and an ambiguous name comes back with the candidates it could have meant.

Supported parks: Magic Kingdom, EPCOT, Hollywood Studios, Animal Kingdom, Disneyland (CA), California Adventure. Add more by appending to PARKS in src/parkalert_mcp/parks.py.

Related MCP server: Disney Parks MCP Server

Setup

Requires Python 3.10 or newer (the mcp SDK's floor).

python3.12 -m venv .venv
.venv/bin/pip install -e .

Running it

The server speaks stdio, so it is launched by its client rather than run as a long-lived service. To exercise it by hand:

.venv/bin/python -m parkalert_mcp.server

For an interactive tool browser, the MCP Inspector works against the same command:

npx @modelcontextprotocol/inspector .venv/bin/python -m parkalert_mcp.server

Claude Desktop

Add the server to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "parkalert": {
      "command": "/Users/austin/parkalert-mcp/.venv/bin/python",
      "args": ["-m", "parkalert_mcp.server"]
    }
  }
}

The absolute path to the venv's Python matters: Claude Desktop does not run through a login shell, so a bare python would not resolve to this environment. Restart Claude Desktop after editing, then look for the tools under the connectors icon.

Credits

Built by Austin Vodrazka with Claude.

Install Server
F
license - not found
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables users to interact with Washington DC Metro (WMATA) transit system through natural language queries. Provides real-time train arrivals, service alerts, station information, trip planning, and accessibility updates.
    1,044
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Provides Belgian railway travel information via the iRail API, including station search, live departures/arrivals, route planning, and network disturbances.
    5
    MIT

View all related MCP servers

Related MCP Connectors

  • Look up Pokémon, moves, abilities, items, natures, and type matchups from PokéAPI v2.

  • Real-time transit stops, routes, arrivals, vehicle positions, and schedules via OneBusAway APIs.

  • Read and update your Everway trips and itineraries from any MCP-compatible AI assistant.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/austin5374/parkalert-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server