mcp-server-chart vs anythingmcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | anythingmcp by HelpCode-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 56 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 45 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具运维基建其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
anythingmcp · 概述
自托管 MCP 网关,将 REST、SOAP/WSDL、GraphQL 和 SQL API 连接到 Claude、ChatGPT、Gemini、Copilot、Cursor。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
anythingmcp · 使用场景
- 将 SAP、Oracle、Weclapp 或 Xentral 等 ERP 系统连接到 Claude Desktop 进行对话式查询
- 让 AI 代理能够使用内置的 DHL、DPD、GLS、Shipcloud 和 Sendcloud 适配器追踪包裹
- 通过自动 WSDL 解析将传统的 SOAP/WSDL 服务桥接到现代 AI 工作流中
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"]
}
}
}anythingmcp · 安装
使用 Docker 安装(推荐):
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && ./setup.sh设置完成后,打开 http://localhost:3000 并注册第一个用户,该用户将自动成为管理员。
要在 Claude Desktop 中使用,将以下内容添加到 claude_desktop_config.json:
{
"mcpServers": {
"anythingmcp": {
"command": "docker",
"args": ["run", "-p", "3000:3000", "helpcodeai/anythingmcp"]
}
}
}