ultimate_mcp_server vs nps-explorer-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | nps-explorer-mcp-server by Kyle-Ski | |
|---|---|---|
| Stars | ★ 149 | ★ 2 |
| 30d uses | — | — |
| Score | 85 | 29 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 13 mo ago |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servernps-explorer-mcp-server · Install
Installation
- **Clone the repo**
git clone https://github.com/Kyle-Ski/nps-explorer-mcp-server.git
cd nps-explorer-mcp-server- **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.exampleto.dev.varsand populate with your secrets
- **Install dependencies**
npm i- **Run locally**
npm start- **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"]
}
}
}