mcp-server-chart vs mcp-agent
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | mcp-agent by Haohao-end | |
|---|---|---|
| Stars | ★ 4,068 | ★ 85 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 47 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | AI / LLM 工具开发者工具知识库 / RAG |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 3 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
mcp-agent · 概述
模块化Python MCP框架,集成LLM工具、天气数据和高级RAG功能。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
mcp-agent · 使用场景
- 构建可通过LLM访问实时天气信息的智能代理
- 创建具有高级RAG功能的知识检索文档智能系统
- 开发具有标准化MCP工具集成的模块化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"]
}
}
}mcp-agent · 安装
安装
- **先决条件**
- Python 3.10+ - 虚拟环境(推荐)
- **环境设置**
在根目录创建.env文件,包含: ``env API_KEY=your_llm_api_key BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1 MODEL=qwen-plus EMBED_MODEL=sentence-transformers/all-MiniLM-L6-v2 ``
- **依赖项**
``bash pip install mcp langchain langchain-community langchain-openai chromadb httpx python-dotenv openai ``
Claude Desktop 集成
添加到claude_desktop_config.json:
{
"mcpServers": {
"mcp-agent": {
"command": "python",
"args": ["/path/to/mcp-agent/client.py"]
}
}
}