mcp-server-chart vs git-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | git-mcp-server by cyanheads | |
|---|---|---|
| Stars | ★ 4,068 | ★ 215 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsFile System |
| 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.
git-mcp-server · Summary
A comprehensive MCP server that provides AI agents with 28 Git operations including clone, commit, branch management, and more.
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
git-mcp-server · Use cases
- AI-assisted code review and commit management
- Automated repository maintenance and version control
- Integration of Git operations into AI agent workflows
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"]
}
}
}git-mcp-server · Install
Installation
The git-mcp-server can be installed and run with either Node.js or Bun:
# Node.js
npx @cyanheads/git-mcp-server@latest
# Bun
bunx @cyanheads/git-mcp-server@latestClaude Desktop Configuration
Add the following to your Claude Desktop config file (claude_desktop_config.json):
{
"mcpServers": {
"git-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["@cyanheads/git-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"GIT_BASE_DIR": "~/Developer/",
"LOGS_DIR": "~/Developer/logs/git-mcp-server/",
"GIT_USERNAME": "your-username",
"GIT_EMAIL": "your-email",
"GIT_SIGN_COMMITS": "true"
}
}
}
}For Bun users, replace the command with bunx.