mcp-server-chart vs applescript-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | applescript-mcp by peakmojo | |
|---|---|---|
| Stars | ★ 4,068 | ★ 457 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityFile SystemDeveloper Tools |
| Language | TypeScript | Python |
| 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.
applescript-mcp · Summary
MCP server for AppleScript execution on Mac, enabling AI control of system applications and files.
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
applescript-mcp · Use cases
- Automating calendar events and reminders via AI
- Reading and managing Notes and Messages applications
- Executing file system operations and shell commands
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"]
}
}
}applescript-mcp · Install
Installation
Node.js
{
"mcpServers": {
"applescript_execute": {
"command": "npx",
"args": [
"@peakmojo/applescript-mcp"
]
}
}
}Python (uvx)
{
"mcpServers": {
"applescript_execute": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/peakmojo/applescript-mcp",
"mcp-server-applescript"
]
}
}
}Python (local development)
- Clone the repository
git clone https://github.com/peakmojo/applescript-mcp.git- Configure Claude Desktop
{
"mcpServers": {
"applescript_execute": {
"command": "uv",
"args": [
"--directory",
"/path/to/your/repo",
"run",
"mcp-server-applescript"
]
}
}
}