mcp-server-chart vs github-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | github-mcp-server by github | |
|---|---|---|
| Stars | ★ 4,068 | ★ 29,881 |
| 30d uses | 10,239 | — |
| Score | 84 | 64 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | GitHubDeveloper ToolsProductivity |
| 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.
github-mcp-server · Summary
GitHub's official MCP Server connects AI tools to GitHub's platform for repository management, issue automation, and code 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
github-mcp-server · Use cases
- Browse and analyze code repositories from within AI assistants
- Automate creation and management of GitHub issues and pull requests
- Monitor and analyze CI/CD pipelines and GitHub Actions 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"]
}
}
}github-mcp-server · Install
Installation Options
Remote Installation (Recommended)
Add to your MCP host configuration (e.g., VS Code 1.101+):
{
"servers": {
"github": {
"type": "http",
"url": "https://api.githubcopilot.com/mcp/"
}
}
}For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"github": {
"command": "http",
"args": ["https://api.githubcopilot.com/mcp/"]
}
}
}Local Installation
Using Docker:
docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN=your_token ghcr.io/github/github-mcp-serverOr install from source after cloning the repository.