National Parks MCP Server

National Parks MCP Server

Real-time access to U.S. National Parks data via the Model Context Protocol.

35
Stars
13
Forks
35
Watchers
5
Issues
Provides an MCP-compliant API server for real-time information on U.S. National Parks. Offers endpoints to query park details, alerts, activities, visitor centers, campgrounds, and events. Designed for easy integration with AI agents and tools that utilize the Model Context Protocol for context management.

Key Features

MCP-compatible API endpoints
Real-time park details retrieval
Search and filter parks by state, name, activity, or description
Access to current park alerts and important notifications
Visitor center information including operating hours and contacts
Comprehensive campground details and amenities
Retrieve upcoming park events with date filtering
Support for pagination and result limiting
Seamless integration with AI and agent tools
Support for flexible, multi-parameter queries

Use Cases

Integrating up-to-date national park data into AI chatbots or assistants
Building travel or planning tools for park visitors
Enhancing context-aware models with real-time park alerts and news
Developing educational applications focused on U.S. National Parks
Automating itinerary building with park events and activities
Powering smart recommendation engines for national park tours
Providing dynamic access to camping availability and amenities
Facilitating context-driven search for park-specific visitor centers
Building dashboards for park alerts and safety information
Supporting research or AI models needing granular public park data

README

National Parks MCP Server

smithery badge Verified on MseeP

MCP Server for the National Park Service (NPS) API, providing real-time information about U.S. National Parks, including park details, alerts, and activities.

Tools

  1. findParks

    • Search for national parks based on various criteria
    • Inputs:
      • stateCode (optional string): Filter parks by state code (e.g., "CA" for California). Multiple states can be comma-separated (e.g., "CA,OR,WA")
      • q (optional string): Search term to filter parks by name or description
      • limit (optional number): Maximum number of parks to return (default: 10, max: 50)
      • start (optional number): Start position for results (useful for pagination)
      • activities (optional string): Filter by available activities (e.g., "hiking,camping")
    • Returns: Matching parks with detailed information
  2. getParkDetails

    • Get comprehensive information about a specific national park
    • Inputs:
      • parkCode (string): The park code of the national park (e.g., "yose" for Yosemite, "grca" for Grand Canyon)
    • Returns: Detailed park information including descriptions, hours, fees, contacts, and activities
  3. getAlerts

    • Get current alerts for national parks including closures, hazards, and important information
    • Inputs:
      • parkCode (optional string): Filter alerts by park code (e.g., "yose" for Yosemite). Multiple parks can be comma-separated (e.g., "yose,grca")
      • limit (optional number): Maximum number of alerts to return (default: 10, max: 50)
      • start (optional number): Start position for results (useful for pagination)
      • q (optional string): Search term to filter alerts by title or description
    • Returns: Current alerts organized by park
  4. getVisitorCenters

    • Get information about visitor centers and their operating hours
    • Inputs:
      • parkCode (optional string): Filter visitor centers by park code (e.g., "yose" for Yosemite). Multiple parks can be comma-separated (e.g., "yose,grca")
      • limit (optional number): Maximum number of visitor centers to return (default: 10, max: 50)
      • start (optional number): Start position for results (useful for pagination)
      • q (optional string): Search term to filter visitor centers by name or description
    • Returns: Visitor center information including location, hours, and contact details
  5. getCampgrounds

    • Get information about available campgrounds and their amenities
    • Inputs:
      • parkCode (optional string): Filter campgrounds by park code (e.g., "yose" for Yosemite). Multiple parks can be comma-separated (e.g., "yose,grca")
      • limit (optional number): Maximum number of campgrounds to return (default: 10, max: 50)
      • start (optional number): Start position for results (useful for pagination)
      • q (optional string): Search term to filter campgrounds by name or description
    • Returns: Campground information including amenities, fees, and reservation details
  6. getEvents

    • Find upcoming events at parks
    • Inputs:
      • parkCode (optional string): Filter events by park code (e.g., "yose" for Yosemite). Multiple parks can be comma-separated (e.g., "yose,grca")
      • limit (optional number): Maximum number of events to return (default: 10, max: 50)
      • start (optional number): Start position for results (useful for pagination)
      • dateStart (optional string): Start date for filtering events (format: YYYY-MM-DD)
      • dateEnd (optional string): End date for filtering events (format: YYYY-MM-DD)
      • q (optional string): Search term to filter events by title or description
    • Returns: Event information including dates, times, and descriptions

Setup

Installing via Smithery

To install mcp-server-nationalparks for Claude Desktop automatically via Smithery:

bash
npx -y @smithery/cli install @KyrieTangSheng/mcp-server-nationalparks --client claude

NPS API Key

  1. Get a free API key from the National Park Service Developer Portal
  2. Store this key securely as it will be used to authenticate requests

Usage with Claude Desktop

To use this server with Claude Desktop, add the following to your claude_desktop_config.json:

json
{
  "mcpServers": {
    "nationalparks": {
      "command": "npx",
      "args": ["-y", "mcp-server-nationalparks"],
      "env": {
        "NPS_API_KEY": "YOUR_NPS_API_KEY"
      }
    }
  }
}

Example Usage

Finding Parks in a State

Tell me about national parks in Colorado.

Getting Details About a Specific Park

What's the entrance fee for Yellowstone National Park?

Checking for Alerts or Closures

Are there any closures or alerts at Yosemite right now?

Finding Visitor Centers

What visitor centers are available at Grand Canyon National Park?

Looking for Campgrounds

Are there any campgrounds with electrical hookups in Zion National Park?

Finding Upcoming Events

What events are happening at Acadia National Park next weekend?

Planning a Trip Based on Activities

Which national parks in Utah have good hiking trails?

License

This MCP server is licensed under the MIT License. See the LICENSE file for details.

Appendix: Popular National Parks and their codes

Park Name Park Code
Yosemite yose
Grand Canyon grca
Yellowstone yell
Zion zion
Great Smoky Mountains grsm
Acadia acad
Olympic olym
Rocky Mountain romo
Joshua Tree jotr
Sequoia & Kings Canyon seki

For a complete list, visit the NPS website.

Star History

Star History Chart

Repository Owner

Repository Details

Language TypeScript
Default Branch main
Size 53 KB
Contributors 2
License MIT License
MCP Verified Nov 12, 2025

Programming Languages

TypeScript
97.42%
JavaScript
1.83%
Dockerfile
0.75%

Tags

Join Our Newsletter

Stay updated with the latest AI tools, news, and offers by subscribing to our weekly newsletter.

We respect your privacy. Unsubscribe at any time.

Related MCPs

Discover similar Model Context Protocol servers

  • AllTrails MCP Server

    AllTrails MCP Server

    MCP server for seamless AllTrails data access and integration

    AllTrails MCP Server provides Model Context Protocol (MCP) compliant access to AllTrails hiking trail data, enabling AI tools to search for trails and retrieve detailed trail information. It supports searching by national park and fetching comprehensive details such as difficulty, length, elevation, ratings, and route types. The server communicates via standard input/output and is designed for easy integration with MCP-compatible clients like Claude Desktop. Installation is flexible, supporting both virtual environments and system Python setups.

    • 6
    • MCP
    • srinath1510/alltrails-mcp-server
  • mcp-national-rail

    mcp-national-rail

    Access live National Rail train data via MCP for AI agents.

    mcp-national-rail is a Model Context Protocol (MCP) server designed to enable AI agents to retrieve real-time and scheduled train information from National Rail using the Realtime Trains API. It facilitates live and historical lookups of departures and arrivals by exposing a set of tools through a standardized MCP interface. The server can be installed via Smithery or manually and configured for use with AI clients like Claude Desktop. Secure authentication with the Realtime Trains API is supported through user-provided credentials.

    • 1
    • MCP
    • lucygoodchild/mcp-national-rail
  • Yuque-MCP-Server

    Yuque-MCP-Server

    Seamless integration of Yuque knowledge base with Model-Context-Protocol for AI model context management.

    Yuque-MCP-Server provides an MCP-compatible server for interacting with the Yuque knowledge base platform. It enables AI models to retrieve, manage, and analyze Yuque documents and user information through a standardized Model-Context-Protocol interface. The server supports operations such as document creation, reading, updating, deletion, advanced search, and team statistics retrieval, making it ideal for AI-powered workflows. Inspired by Figma-Context-MCP, it facilitates contextual awareness and dynamic knowledge management for AI applications.

    • 31
    • MCP
    • HenryHaoson/Yuque-MCP-Server
  • Aviationstack MCP Server

    Aviationstack MCP Server

    MCP server offering comprehensive endpoints for aviation and flight data.

    Aviationstack MCP Server provides an MCP-compliant API that exposes tools to access real-time and scheduled flight data, aircraft details, random aircraft types, countries, and city information from the AviationStack API. It offers ready-to-use endpoints for airline-specific flight queries, airport schedules, and in-depth vehicle, country, and city data. The solution applies the Model Context Protocol by defining MCP tools as Python functions with standardized interfaces, designed for seamless integration into MCP-compatible environments. The server is built using Python, incorporates the FastMCP library, and is intended for easy deployment and use in application development.

    • 11
    • MCP
    • Pradumnasaraf/aviationstack-mcp
  • Google Workspace MCP Server

    Google Workspace MCP Server

    Full natural language control of Google Workspace through the Model Context Protocol.

    Google Workspace MCP Server enables comprehensive natural language interaction with Google services such as Calendar, Drive, Gmail, Docs, Sheets, Slides, Forms, Tasks, and Chat via any MCP-compatible client or AI assistant. It supports both single-user and secure multi-user OAuth 2.1 authentication, providing a production-ready backend for custom apps. Built on FastMCP, it delivers high performance and advanced context handling, offering deep integration with the entire Google Workspace suite.

    • 890
    • MCP
    • taylorwilsdon/google_workspace_mcp
  • TickTick MCP Server

    TickTick MCP Server

    Enable powerful AI-driven task management for TickTick via the Model Context Protocol.

    TickTick MCP Server provides comprehensive programmatic access to TickTick task management features using the Model Context Protocol. Built on the ticktick-py library, it enables AI assistants and MCP-compatible applications to create, update, retrieve, and filter tasks with improved precision and flexibility. The server supports advanced filtering, project and tag management, subtask handling, and robust context management for seamless AI integration.

    • 35
    • MCP
    • jen6/ticktick-mcp
  • Didn't find tool you were looking for?

    Be as detailed as possible for better results