mcp-server-chart vs vesta-mac-dist
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | vesta-mac-dist by scouzi1966 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 80 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | 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.
vesta-mac-dist · Summary
Vesta is a multi-backend AI chat app for macOS with full MCP server integration for programmatic control.
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
vesta-mac-dist · Use cases
- AI assistant programming with Claude Code integration
- Batch processing and automation of AI tasks
- Multi-model research and comparison
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"]
}
}
}vesta-mac-dist · Install
Installation
Homebrew (Recommended)
brew tap scouzi1966/afm
brew install --cask scouzi1966/afm/vesta-macDirect Download
Download the latest DMG from the [releases page](https://github.com/scouzi1966/vesta-mac-dist/releases)
Claude Desktop Integration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"vesta": {
"command": "nc",
"args": ["localhost", "1337"],
"env": {"VESTA_MCP_TOKEN": "your_token_here"}
}
}
}