mcp-server-chart vs lazy-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | lazy-mcp by voicetreelab | |
|---|---|---|
| Stars | ★ 4,068 | ★ 87 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Go |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
lazy-mcp · Summary
Lazy MCP proxy server that loads tools on-demand to reduce context window usage and token consumption.
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
lazy-mcp · Use cases
- Reducing context window usage in large LLM applications with numerous MCP tools
- Implementing permission controls for sensitive tools through Claude Code hooks
- Organizing and categorizing multiple MCP servers into a coherent hierarchy
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"]
}
}
}lazy-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/voicetreelab/lazy-mcp.git
cd lazy-mcp- Build the proxy server:
make build- Configure by setting up your hierarchy structure:
./build/structure_generator --config config.json --output testdata/mcp_hierarchy- Add to Claude Code:
claude mcp add --transport stdio mcp-proxy build/mcp-proxy -- --config config.json- Set up permission hooks if needed (see README for details).