mcp-server-chart vs mcp-server-siri-shortcuts
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-siri-shortcuts by dvcrn | |
|---|---|---|
| Stars | ★ 4,068 | ★ 187 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-server-siri-shortcuts · Summary
MCP server that lets LLMs interact with macOS Siri shortcuts through listing, opening, and executing them.
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-siri-shortcuts · Use cases
- Automate repetitive iOS tasks through voice commands to AI assistants
- Create workflows where AI triggers complex shortcut sequences
- Develop productivity tools that bridge AI capabilities with iOS automation
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-siri-shortcuts · Install
npm install -g mcp-server-siri-shortcutsAdd to your Claude Desktop configuration:
{
"mcpServers": {
"siri-shortcuts": {
"command": "npx",
"args": ["mcp-server-siri-shortcuts"],
"env": {
"GENERATE_SHORTCUT_TOOLS": "true",
"INJECT_SHORTCUT_LIST": "false"
}
}
}
}