MCP Catalogs
首页

mcp-server-chart vs mcp-fetch-weather

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-server-chart
by antvis
mcp-fetch-weather
by IsseiSuar
Stars★ 4,068★ 0
30天用量10,239
综合分8427
官方
分类
AI / LLM 工具开发者工具效率工具
AI / LLM 工具weather其它
实现语言TypeScriptTypeScript
最近提交本月11 个月前

mcp-server-chart · 概述

使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。

mcp-fetch-weather · 概述

一个简约的MCP服务器,使用Open-Meteo API提供天气查询功能。

mcp-server-chart · 使用场景

  • 数据分析师从数据集中创建可视化报告
  • AI 助手根据用户请求生成自定义图表
  • Web 应用通过 HTTP API 嵌入可视化功能

mcp-fetch-weather · 使用场景

  • 通过MCP协议在LLM应用中启用天气查询
  • 作为MCP工具开发的参考实现
  • 展示MCP服务器与外部API的集成

mcp-server-chart · 安装

安装

全局安装:

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

对于桌面应用(如 Claude Desktop、VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

Windows 系统:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

mcp-fetch-weather · 安装

git clone git@github.com/IsseiSuar/mcp-fetch-weather.git
cd mcp-fetch-weather
pnpm install  # 或 npm install

对于Claude Desktop,将以下内容添加到配置中:

{
  "mcpServers": {
    "weather": {
      "command": "node",
      "args": ["path/to/mcp-fetch-weather/dist/index.js"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。