mcp-server-chart vs Agentic-MCP-Skill
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Agentic-MCP-Skill by cablate | |
|---|---|---|
| Stars | ★ 4,068 | ★ 32 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsBrowser AutomationAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
Agentic-MCP-Skill · Summary
A progressive MCP client with three-layer lazy loading that reduces token usage by up to 86%.
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
Agentic-MCP-Skill · Use cases
- Reducing token usage in AI applications that interact with multiple MCP servers
- Browser automation with Playwright MCP server through progressive loading
- Managing multiple MCP servers efficiently with a persistent daemon connection
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"]
}
}
}Agentic-MCP-Skill · Install
Installation
# Install globally
npm install -g @cablate/agentic-mcp
# Verify installation
agentic-mcp --version
# Start daemon
agentic-mcp daemon startClaude Desktop Configuration
Add to Claude's claude_desktop_config.json:
{
"mcpServers": {
"agentic-mcp": {
"command": "agentic-mcp",
"args": ["daemon", "start"]
}
}
}