template-repo vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
template-repo by AndrewAltimit | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 127 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 47 | 84 |
| Official | — | — |
| Categories | Developer ToolsSecurityAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Rust | TypeScript |
| Last commit | this month | this month |
template-repo · Summary
Advanced agent orchestration template integrating 20 MCP servers for security, code quality, and multimedia tools.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
template-repo · Use cases
- Multi-agent development workflows with automated code review and PR management
- Security-hardened CI/CD pipelines for AI-generated code
- Detecting sleeper agent behaviors through residual stream analysis
- Legacy software integration via runtime injection and shared memory IPC
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
template-repo · Install
Prerequisites
- Linux system with Docker (v20.10+) and Docker Compose (v2.0+)
Setup Steps
- Clone and setup:
``bash git clone https://github.com/AndrewAltimit/template-repo cd template-repo # Build Rust CLI tools cd tools/rust/board-manager && cargo build --release cd ../github-agents-cli && cargo build --release ``
- Set API keys:
``bash export OPENROUTER_API_KEY="your-key-here" # For OpenCode/Crush ``
- Configure Claude Desktop (create or update ~/.config/claude/config.json):
``json { "mcpServers": { "template-repo": { "command": "path/to/board-manager", "args": [] } } } ``
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"]
}
}
}