mcp-server-chart vs squeez
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | squeez by claudioemmanuel | |
|---|---|---|
| Stars | ★ 4,068 | ★ 121 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Rust |
| 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.
squeez · Summary
squeez is an MCP server that provides token compression and optimization for AI CLI hosts via hooks.
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
squeez · Use cases
- Reducing token consumption in AI coding assistants through bash output compression
- Maintaining context window efficiency for long-running development sessions
- Optimizing AI CLI performance by deduplicating redundant tool calls and outputs
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"]
}
}
}squeez · Install
Installation
Three methods — all produce the same result:
curl (recommended)
curl -fsSL https://raw.githubusercontent.com/claudioemmanuel/squeez/main/install.sh | shnpm / npx
npm install -g squeez
npx squeezcargo
cargo install squeezMCP Server Setup
No special MCP setup is required as squeez includes its own MCP server. Run with:
squeez mcpClaude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"squeez": {
"command": "squeez",
"args": ["mcp"]
}
}
}