safari-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
safari-mcp by achiya-automation | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 63 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 49 | 84 |
| Official | — | — |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
safari-mcp · Summary
Native Safari browser automation for AI agents with 80 tools via AppleScript, zero overhead, and lower CPU usage than Chrome DevTools.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
safari-mcp · Use cases
- AI agents automating web tasks while maintaining logged-in sessions
- Web scraping with lower resource usage and better anti-bot detection resistance
- Automated testing of web applications with actual browser state
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
safari-mcp · Install
Installation
Quick install: npx safari-mcp
Global install: npm install -g safari-mcp
Configure Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"safari": {
"command": "npx",
"args": ["safari-mcp"]
}
}
}Restart Claude Desktop after saving.
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"]
}
}
}