mcp-server-chart vs mcp_massive
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | mcp_massive by massive-com | |
|---|---|---|
| Stars | ★ 4,068 | ★ 332 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 52 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 金融数据开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
mcp_massive · 概述
一个MCP服务器,通过搜索、调用和查询工具访问Massive.com金融数据,并提供内存SQLite存储功能。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
mcp_massive · 使用场景
- 获取实时股票价格、历史市场数据和财务基本面
- 计算金融指标如Black-Scholes期权定价和移动平均线
- 使用自然语言查询搜索Massive.com 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_massive · 安装
前置要求
- Python 3.12+
- Massive.com API密钥
- Astral UV (v0.4.0+)
Claude Code安装
npm install -g @anthropic-ai/claude-code
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
claude mcp add massive -e MASSIVE_API_KEY=your_api_key_here -- mcp_massiveClaude Desktop安装
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
which mcp_massive然后添加到Claude Desktop配置:
{
"mcpServers": {
"massive": {
"command": "<path_to_mcp_massive>",
"env": {
"MASSIVE_API_KEY": "<your_api_key_here>",
"HOME": "<your_home_directory>"
}
}
}
}