MCP Catalogs
Home

mcp-server-chart vs weather-mcp-server

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

mcp-server-chart
by antvis
weather-mcp-server
by ezh0v
Stars★ 4,068★ 244
30d uses10,239
Score8449
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
weatherAI / LLM ToolsDeveloper Tools
LanguageTypeScriptGo
Last committhis month3 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

weather-mcp-server · Summary

A lightweight Go MCP server that provides real-time weather data to AI assistants.

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

weather-mcp-server · Use cases

  • AI assistants providing weather information in conversations
  • Integration with productivity tools that need weather data
  • Building location-aware AI applications with real-time meteorological data

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

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

weather-mcp-server · Install

Installation

Claude Desktop Configuration

Add the server to your Claude configuration:

{
  "mcpServers": {
    "weather-mcp-server": {
      "command": "/path/to/weather-mcp-server",
      "env": {
        "WEATHER_API_KEY": "your-api-key"
      }
    }
  }
}

Build from Source

go build -o weather-mcp-server ./cmd/weather-mcp-server

Docker

docker build -t weather-mcp-server .
docker run -e WEATHER_API_KEY=your-api-key -d --name weather-mcp-server -p 8000:8000 weather-mcp-server
Comparison generated from public README + GitHub signals. Last updated automatically.