mcp-server-chart vs agentmako
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | agentmako by drhalto | |
|---|---|---|
| Stars | ★ 4,068 | ★ 41 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | 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.
agentmako · Summary
Local-first MCP server providing codebase intelligence through structured context packets, diagnostics and SQLite-backed facts.
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
agentmako · Use cases
- Understanding project structure and codebase before making changes
- Finding relevant files, routes, symbols and diagnostics in large codebases
- Extracting code conventions and patterns across projects
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"]
}
}
}agentmako · Install
Install Node.js 20 or newer:
npm install -g agentmakoConnect to your project:
cd /path/to/your/project
agentmako connect . --no-dbConfigure your MCP client:
{
"mcpServers": {
"mako-ai": {
"command": "agentmako",
"args": ["mcp"]
}
}
}