mcp-server-chart vs git
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | git by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 4,068 | ★ 85,748 |
| 30d uses | 10,239 | — |
| Score | 84 | 75 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsFile SystemProductivity |
| 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 · Summary
A comprehensive MCP server for Git operations with status viewing, diffing, commits, and branch management.
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 · Use cases
- AI-powered Git repository analysis and management
- Automated code review through diff examination
- Branch management and workflow automation
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 · Install
Using uv (recommended)
When using [uv](https://docs.astral.sh/uv/) no specific installation is needed. Use [uvx](https://docs.astral.sh/uv/guides/tools/) to directly run the server:
uvx mcp-server-git --repository path/to/git/repoUsing PIP
Alternatively you can install mcp-server-git via pip:
pip install mcp-server-gitAfter installation, run it as:
python -m mcp_server_gitClaude Desktop Configuration
Add to your claude_desktop_config.json:
"mcpServers": {
"git": {
"command": "uvx",
"args": ["mcp-server-git", "--repository", "path/to/git/repo"]
}
}