Disney Parks MCP Server

Disney Parks MCP Server

Provides access to Disney parks data including attractions, dining locations, height requirements, Lightning Lane status, and other park information for Walt Disney World and Disneyland resorts through structured queries and fuzzy search.

Category
Visit Server

README

Disney Parks MCP Server

An MCP (Model Context Protocol) server that provides Disney parks data to Claude Code. Returns structured data for attractions, dining, and other park entities.

Features

  • Attraction data: Height requirements, Lightning Lane status, thrill levels, single rider availability
  • Dining data: Service type, meal periods, cuisine, reservations, mobile ordering
  • Fuzzy search: Find entities by name with intelligent matching
  • Auto-caching: 24-hour cache with SQLite persistence
  • Dual data sources: Disney Finder API (primary) with ThemeParks.wiki fallback

Installation

npm install
npm run build

Usage

With Claude Code

Add to your Claude Code MCP configuration:

{
  "mcpServers": {
    "disney": {
      "command": "node",
      "args": ["/path/to/mouse-mcp/dist/index.js"]
    }
  }
}

Development

# Run in development mode with auto-reload
npm run dev

# Type check without building
npm run check

# Test with MCP inspector
npm run inspector

Tools

disney_destinations

List all supported Disney destinations with their parks.

No parameters required

disney_attractions

Get attractions for a destination or park.

Parameter Type Required Description
destination string Yes wdw or dlr
parkId string No Filter to specific park
filters.hasLightningLane boolean No Only Lightning Lane attractions
filters.maxHeightRequirement number No Max height in inches
filters.thrillLevel string No family, moderate, or thrill
filters.hasSingleRider boolean No Only single rider attractions

disney_dining

Get dining locations for a destination or park.

Parameter Type Required Description
destination string Yes wdw or dlr
parkId string No Filter to specific park
filters.serviceType string No table-service, quick-service, etc.
filters.mealPeriod string No breakfast, lunch, dinner, snacks
filters.reservationsAccepted boolean No Only reservation restaurants
filters.characterDining boolean No Only character dining

disney_entity

Look up a specific entity by ID or fuzzy name search.

Parameter Type Required Description
id string No* Entity ID for exact lookup
name string No* Entity name for fuzzy search
destination string No Limit search to wdw or dlr
entityType string No ATTRACTION or RESTAURANT

*Either id or name is required.

disney_status

Get server health and cache statistics.

Parameter Type Required Description
includeDetails boolean No Include entity breakdown

Configuration

Environment variables (all prefixed with MOUSE_MCP_):

Variable Default Description
MOUSE_MCP_LOG_LEVEL INFO Log level: DEBUG, INFO, WARN, ERROR
MOUSE_MCP_DB_PATH ~/.cache/mouse-mcp/disney.db SQLite database path
MOUSE_MCP_TIMEOUT 30000 Request timeout in ms
MOUSE_MCP_HEADLESS true Run Playwright in headless mode

Architecture

┌─────────────────────────────────────────────────────────────┐
│                     MCP Server                               │
│  ┌─────────────────────────────────────────────────────┐   │
│  │                    Tools                             │   │
│  │  destinations | attractions | dining | entity | status │
│  └─────────────────────────────────────────────────────┘   │
│                           │                                  │
│  ┌─────────────────────────────────────────────────────┐   │
│  │                  API Clients                         │   │
│  │  ┌─────────────────┐    ┌─────────────────┐        │   │
│  │  │ Disney Finder   │───▶│ ThemeParks.wiki │        │   │
│  │  │    (primary)    │    │   (fallback)    │        │   │
│  │  └─────────────────┘    └─────────────────┘        │   │
│  │           │                                          │   │
│  │  ┌─────────────────┐                                │   │
│  │  │ Session Manager │ (Playwright auth)              │   │
│  │  └─────────────────┘                                │   │
│  └─────────────────────────────────────────────────────┘   │
│                           │                                  │
│  ┌─────────────────────────────────────────────────────┐   │
│  │                   SQLite Database                    │   │
│  │  sessions | cache | entities (with FTS5)            │   │
│  └─────────────────────────────────────────────────────┘   │
└─────────────────────────────────────────────────────────────┘

Supported Destinations

Walt Disney World Resort (wdw)

  • Magic Kingdom Park
  • EPCOT
  • Disney's Hollywood Studios
  • Disney's Animal Kingdom Theme Park

Disneyland Resort (dlr)

  • Disneyland Park
  • Disney California Adventure Park

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured