mcp-server-chart vs archmcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | archmcp by dejo1307 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 30 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| 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.
archmcp · Summary
archmcp is an MCP server that generates compact architectural snapshots of repositories to provide AI agents with structured codebase overviews.
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
archmcp · Use cases
- Giving AI coding agents a structural overview of codebases before they start exploring
- Enabling cross-repository understanding by combining snapshots from multiple projects
- Identifying architectural issues like cyclic dependencies and layer violations
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"]
}
}
}archmcp · Install
Prerequisites
- Go 1.22+
- C compiler (for tree-sitter CGo bindings)
Build
go build -o archmcp ./cmd/archmcpOr install globally:
go install ./cmd/archmcpConnect to your MCP client
Add to your MCP client configuration. For example, in Cursor's mcp.json:
{
"mcpServers": {
"archmcp": {
"command": "/path/to/archmcp",
"args": ["/path/to/mcp-arch.yaml"]
}
}
}Or if installed via go install:
{
"mcpServers": {
"archmcp": {
"command": "archmcp"
}
}
}