mcp-server-chart vs Mantic.sh
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | Mantic.sh by marcoaapfortes | |
|---|---|---|
| Stars | ★ 4,068 | ★ 547 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 50 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具搜索AI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 3 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
Mantic.sh · 概述
一款面向AI代理的上下文感知代码搜索引擎,能够理解代码结构。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
Mantic.sh · 使用场景
- 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"]
}
}
}Mantic.sh · 安装
MCP 服务器安装
Mantic 作为 MCP (Model Context Protocol) 服务器,适用于 Claude Desktop、Cursor、VS Code 和其他兼容 MCP 的工具。
**一键安装:**
- [在 Cursor 中安装](https://cursor.com/en/install-mcp?name=mantic&config=eyJ0eXBlIjogInN0ZGlvIiwgImNvbW1hbmQiOiAibnB4IiwgImFyZ3MiOiBbIi15IiwgIm1hbnRpYy5zaEBsYXRlc3QiLCAic2VydmVyIl19)
- [在 VS Code 中安装](https://vscode.dev/redirect/mcp/install?name=mantic&config=%7B%22type%22%3A%20%22stdio%22%2C%20%22command%22%3A%20%22npx%22%2C%20%22args%22%3A%20%5B%22-y%22%2C%20%22mantic.sh%40latest%22%2C%20%22server%22%5D%7D)
**手动配置**(适用于 Claude Desktop 或其他 MCP 客户端):
将此添加到您的 MCP 设置文件中:
- **macOS**:
~/Library/Application Support/Claude/claude_desktop_config.json - **Windows**:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mantic": {
"command": "npx",
"args": ["-y", "mantic.sh@latest", "server"]
}
}
}