mcp-server-chart vs dexto
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | dexto by truffle-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 620 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
dexto · Summary
A TypeScript-based agent harness that includes MCP server capabilities for building and orchestrating AI applications.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
dexto · Use cases
- Building autonomous coding agents that can read, write, and refactor code
- Creating multi-agent systems that collaborate on complex tasks
- Developing MCP servers to expose tools, files, and APIs via the Model Context Protocol
- Building digital companions with persistent memory and context awareness
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}dexto · Install
Installation
# macOS / Linux / WSL (native installer, recommended)
curl -fsSL https://dexto.ai/install | bash
# Windows PowerShell
irm https://dexto.ai/install.ps1 | iex
# Or build from source
git clone https://github.com/truffle-ai/dexto.git
cd dexto && pnpm install && pnpm install-cliRunning as MCP Server
# Start as MCP server
npx dexto --mode mcp --agent coding-agent --auto-approve --no-elicitationClaude Desktop Integration
Add to claude_desktop_config.json:
{
"mcpServers": {
"dexto": {
"command": "npx",
"args": ["-y", "dexto", "--mode", "mcp", "--agent", "coding-agent", "--auto-approve", "--no-elicitation"]
}
}
}