MCP Catalogs
Home

nps-explorer-mcp-server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

nps-explorer-mcp-server
by Kyle-Ski
everything
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score2977
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit13 mo agothis month

nps-explorer-mcp-server · Summary

An MCP server for U.S. national parks data, providing park info, trails, alerts, events, and weather forecasts via API integrations.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

nps-explorer-mcp-server · Use cases

  • Planning a national park visit with up-to-date weather and trail conditions
  • Discovering events and alerts at various national parks
  • Finding campgrounds and recreation areas near specific locations

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

nps-explorer-mcp-server · Install

Installation

  1. **Clone the repo**
git clone https://github.com/Kyle-Ski/nps-explorer-mcp-server.git
cd nps-explorer-mcp-server
  1. **Set up API keys**
  • Get API keys for National Park Service API, Recreation.gov API, and Weather API
  • Create a GitHub OAuth App
  • Copy .dev.vars.example to .dev.vars and populate with your secrets
  1. **Install dependencies**
npm i
  1. **Run locally**
npm start
  1. **Deploy to Cloudflare Workers**
npm run deploy

**Claude Desktop Configuration:** Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "nps-explorer": {
      "command": "npx",
      "args": ["@modelcontextprotocol/inspector", "connect", "https://your-subdomain.workers.dev"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.