mcp-server-chart vs apple-docs-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | apple-docs-mcp by kimsungwhee | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,259 |
| 30d uses | 10,239 | — |
| Score | 84 | 56 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsSearch |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
apple-docs-mcp · Summary
Apple Developer Documentation MCP server providing searchable access to official docs, APIs, WWDC videos, and code examples across Apple platforms.
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
apple-docs-mcp · Use cases
- Quickly search Apple documentation for specific APIs, classes, or methods while coding
- Access SwiftUI and UIKit documentation with related API suggestions
- Search and watch WWDC sessions directly from AI assistants to learn new technologies
- Get code examples and implementation guidance for Apple frameworks
- Track documentation updates and beta features for new iOS/macOS releases
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"]
}
}
}apple-docs-mcp · Install
Claude Desktop (Recommended)
Add this to your Claude Desktop configuration: **macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"apple-docs": {
"command": "npx",
"args": ["-y", "@kimsungwhee/apple-docs-mcp"]
}
}
}Restart Claude Desktop and start asking about Apple APIs!
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"apple-docs": {
"command": "npx",
"args": ["-y", "@kimsungwhee/apple-docs-mcp"]
}
}
}