mcp-server-chart vs snippy
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | snippy by Azure-Samples | |
|---|---|---|
| Stars | ★ 4,068 | ★ 110 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
snippy · Summary
Azure Functions-based MCP server with vector search and multi-agent workflows for AI-powered code snippet management.
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
snippy · Use cases
- AI assistants managing and retrieving code snippets with semantic search
- Generating documentation and style guides from existing code
- Building multi-agent AI workflows for code analysis and documentation
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"]
}
}
}snippy · Install
Installation
**Prerequisites:**
- Azure subscription
- azd CLI installed
- Choose development environment: GitHub Codespaces, VS Code Dev Containers, or local
**To deploy:**
azd init --template Azure-Samples/snippy
azd auth login
azd up**For Claude Desktop:** Add to Claude Desktop config:
{
"mcpServers": {
"snippy": {
"command": "python",
"args": ["-m", "snippy.mcp"]
}
}
}