mcp-server-chart vs mcp-server-apple-events
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-apple-events by FradSer | |
|---|---|---|
| Stars | ★ 4,068 | ★ 112 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
mcp-server-apple-events · Summary
A production-ready MCP server providing native macOS integration with Apple Reminders and Calendar via EventKit.
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-server-apple-events · Use cases
- Automate Apple Reminders management through AI assistants
- Integrate calendar events with productivity AI workflows
- Create location-based reminders triggered by geofences
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-server-apple-events · Install
Installation
- Install prerequisites: Node.js 18+, macOS, Xcode Command Line Tools, pnpm
- For macOS permissions, verify the required privacy keys are declared in Info.plist
- Run with npx:
npx mcp-server-apple-events
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"apple-reminders": {
"command": "npx",
"args": ["-y", "mcp-server-apple-events"]
}
}
}