mcp-server-chart vs mcp-remote-macos-use
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-remote-macos-use by baryhuang | |
|---|---|---|
| Stars | ★ 4,068 | ★ 482 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityOther |
| Language | TypeScript | Python |
| Last commit | this month | 11 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-remote-macos-use · Summary
MCP server enabling AI agents to control remote macOS systems without API keys
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-remote-macos-use · Use cases
- Automate social media management on Twitter and LinkedIn
- Create video content using CapCut and other macOS applications
- Automate recruitment processes by collecting and qualifying candidate information
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-remote-macos-use · Install
Installation
- Enable Screen Sharing on your macOS machine: [Apple Support Guide](https://support.apple.com/guide/remote-desktop/set-up-a-computer-running-vnc-software-apdbed09830/mac)
- Connect to your remote macOS: [Apple Connection Guide](https://support.apple.com/guide/mac-help/share-the-screen-of-another-mac-mh14066/mac)
- Install Docker Desktop for local Mac: [Docker Installation Guide](https://docs.docker.com/desktop/setup/install/mac-install/)
- Add this MCP server to Claude Desktop configuration:
{
"mcpServers": {
"remote-macos-use": {
"command": "docker",
"args": [
"run",
"-i",
"-e",
"MACOS_USERNAME=your_macos_username",
"-e",
"MACOS_PASSWORD=your_macos_password",
"-e",
"MACOS_HOST=your_macos_hostname_or_ip",
"--rm",
"buryhuang/mcp-remote-macos-use:latest"
]
}
}
}