openweathermap-mcp-server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
openweathermap-mcp-server by abhayymishraa | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 0 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 24 | 84 |
| Official | — | — |
| Categories | weatherapi-integrationProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
openweathermap-mcp-server · Summary
MCP server providing weather data from OpenWeatherMap API with Bun runtime.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
openweathermap-mcp-server · Use cases
- Get current weather for any location using coordinates
- Retrieve 5-day weather forecasts for trip planning
- Integrate weather data into AI assistants for location-aware responses
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
openweathermap-mcp-server · Install
bun installbun run index.tsClaude Desktop configuration:
{
"mcpServers": {
"openweathermap": {
"command": "bun",
"args": ["run", "/path/to/openweathermap-mcp-server/index.ts"]
}
}
}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"]
}
}
}