mcp-server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by Aayush9029 | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 42 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 45 | 84 |
| Official | — | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
mcp-server · Summary
A task management MCP server that connects AI assistants to iPhone task tracking with notifications.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-server · Use cases
- AI assistants create tasks during coding sessions that sync to iPhone
- Automatically update task status as AI completes work
- Receive iPhone notifications when AI assistants finish tasks
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 · Install
Quick Start
1. Get Your API Key
Download the iOS app from the App Store
2. Configure Claude Desktop
Add this to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"task-manager": {
"command": "npx",
"args": [
"mcp-remote",
"https://task-mcp-server.aayushpokharel9029.workers.dev/sse?apiKey=YOUR_API_KEY"
]
}
}
}3. Configure Other MCP Clients
For Cursor or other MCP clients:
{
"mcpServers": {
"task-manager": {
"url": "https://task-mcp-server.aayushpokharel9029.workers.dev/sse?apiKey=YOUR_API_KEY"
}
}
}Replace YOUR_API_KEY with your actual API key.
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"]
}
}
}