mcp-server-chart vs dexto
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | dexto by truffle-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 620 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 51 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
dexto · 概述
TypeScript 实现的智能体框架,包含 MCP 服务器功能,用于构建和编排 AI 应用。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
dexto · 使用场景
- 构建自主编码智能体,能够读取、写入和重构代码
- 创建在复杂任务上协作的多智能体系统
- 开发 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"]
}
}
}dexto · 安装
安装
# macOS / Linux / WSL (原生安装程序,推荐)
curl -fsSL https://dexto.ai/install | bash
# Windows PowerShell
irm https://dexto.ai/install.ps1 | iex
# 或从源码构建
git clone https://github.com/truffle-ai/dexto.git
cd dexto && pnpm install && pnpm install-cli作为 MCP 服务器运行
# 启动为 MCP 服务器
npx dexto --mode mcp --agent coding-agent --auto-approve ----no-elicitationClaude Desktop 集成
添加到 claude_desktop_config.json:
{
"mcpServers": {
"dexto": {
"command": "npx",
"args": ["-y", "dexto", "--mode", "mcp", "--agent", "coding-agent", "--auto-approve", "--no-elicitation"]
}
}
}