mcp-server-chart vs nps-explorer-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | nps-explorer-mcp-server by Kyle-Ski | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 29 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 13 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
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.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}nps-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"]
}
}
}