mcp-server-chart vs GitHub-URL-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | GitHub-URL-MCP by kongyo2 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 31 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | GitHubDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
GitHub-URL-MCP · Summary
An MCP server that validates and converts GitHub URLs between repository info and properly formatted URLs.
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-URL-MCP · Use cases
- Help LLMs correctly construct GitHub URLs from repository information
- Parse GitHub URLs to extract owner, repo, and path components
- Verify repository accessibility before attempting to access GitHub content
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-URL-MCP · Install
npm install
npm run startFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"github-url": {
"command": "npx",
"args": ["@kongyo2/github-url-mcp"]
}
}
}