mcp-server-chart vs abcoder
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | abcoder by cloudwego | |
|---|---|---|
| Stars | ★ 4,068 | ★ 370 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Go |
| 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.
abcoder · Summary
ABCoder is an AI-oriented code-processing framework that provides MCP tools for precise local code repository analysis.
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
abcoder · Use cases
- Code analysis and review in local repositories
- AI-assisted programming with Claude Code integration
- Cross-language code understanding and translation
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"]
}
}
}abcoder · Install
Installation
- Install ABCoder:
go install github.com/cloudwego/abcoder@latest- Parse a repository to UniAST:
abcoder parse {language} {repo-path} -o xxx.json- Configure ABCoder as MCP server:
{
"mcpServers": {
"abcoder": {
"command": "abcoder",
"args": [
"mcp",
"{the-AST-directory}"
]
}
}
}