mcp-server-chart vs mcp-link
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-link by automation-ai-labs | |
|---|---|---|
| Stars | ★ 4,068 | ★ 605 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsWeb ScrapingOther |
| Language | TypeScript | Go |
| Last commit | this month | 14 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-link · Summary
MCP Link automatically converts any OpenAPI V3 API into a fully-functional MCP server.
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
mcp-link · Use cases
- Convert existing REST APIs to MCP servers for AI agent integration without code changes
- Rapidly prototype MCP interfaces for new APIs using OpenAPI specifications
- Unify API access across different services through a standardized MCP interface
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"]
}
}
}mcp-link · Install
Installation
# Clone repository
git clone https://github.com/automation-ai-labs/mcp-link.git
cd mcp-link
# Install dependencies
go mod downloadRunning
# Specify port
go run main.go serve --port 8080 --host 0.0.0.0Usage in Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"openapi-mcp": {
"url": "http://localhost:8080/sse?s=[OpenAPI-Spec-URL]&u=[API-Base-URL]&h=[Auth-Header]:[Value-Prefix]"
}
}
}