mcp-server-chart vs asc-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | asc-mcp by zelentsov-dev | |
|---|---|---|
| Stars | ★ 4,068 | ★ 27 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| 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.
asc-mcp · Summary
MCP server providing 208 tools for managing App Store Connect resources directly from Claude or other MCP clients.
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
asc-mcp · Use cases
- Automate app submissions and review responses through natural language
- Manage TestFlight beta groups and builds programmatically
- Handle in-app purchases and subscription configurations via AI assistants
- Generate App Store Connect analytics reports and performance metrics
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"]
}
}
}asc-mcp · Install
Installation
Option A: Using Mint (recommended)
# Install Mint
brew install mint
# Install asc-mcp
mint install zelentsov-dev/asc-mcp@v2.4.0
# Add to Claude Code
claude mcp add asc-mcp -- ~/.mint/bin/asc-mcpOption B: Building from Source
git clone https://github.com/zelentsov-dev/asc-mcp.git
cd asc-mcp
swift build -c release
# Register with Claude
claude mcp add asc-mcp -- $(pwd)/.build/release/asc-mcpClaude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"asc-mcp": {
"command": "/path/to/asc-mcp",
"env": {
"ASC_KEY_ID": "XXXXXXXXXX",
"ASC_ISSUER_ID": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"ASC_PRIVATE_KEY_PATH": "/path/to/AuthKey.p8"
}
}
}
}