mcp-server-chart vs cupertino
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cupertino by mihaelamj | |
|---|---|---|
| Stars | ★ 4,068 | ★ 742 |
| 30d uses | 10,239 | — |
| Score | 84 | 55 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Swift |
| 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.
cupertino · Summary
A Swift-based MCP server that indexes and serves Apple's developer documentation to AI agents.
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
cupertino · Use cases
- Enable AI assistants to access accurate Apple API documentation without hallucination
- Provide offline development environment for iOS/macOS/Swift developers
- Integrate Apple documentation search directly into AI-powered coding tools
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"]
}
}
}cupertino · Install
Installation
**One-command install (recommended):**
bash <(curl -sSL https://raw.githubusercontent.com/mihaelamj/cupertino/main/install.sh)**With Homebrew:**
brew tap mihaelamj/tap
brew install cupertino
cupertino setup
cupertino serve**Claude Desktop Configuration:** Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"cupertino": {
"command": "/usr/local/bin/cupertino",
"args": ["serve"]
}
}
}