MCP Catalogs
Home

nps-explorer-mcp-server vs filesystem

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

nps-explorer-mcp-server
by Kyle-Ski
filesystem
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score2977
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.