mcp-server-chart vs WeatherSync-AI
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | WeatherSync-AI by HarshilDoshi153 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 30 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper Toolsweather |
| Language | TypeScript | JavaScript |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
WeatherSync-AI · Summary
A lightweight MCP server that fetches real-time weather data from OpenWeather.org based on city names.
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
WeatherSync-AI · Use cases
- AI assistants providing weather information to users
- Automated weather-based workflow triggers
- Educational tools demonstrating real-time data integration with LLMs
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"]
}
}
}WeatherSync-AI · Install
git clone https://github.com/yourusername/mcp-weather-server.git
cd mcp-weather-server
npm installFor Claude Desktop:
{
"mcpServers": {
"weather-sync": {
"command": "node",
"args": ["/path/to/mcp-weather-server/index.js"]
}
}
}