MCP Catalogs
Home

mcp-server-chart vs automation-mcp

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
automation-mcp
by ashwwwin
Stars★ 4,068★ 391
30d uses10,239
Score8447
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsProductivityOther
LanguageTypeScriptTypeScript
Last committhis month11 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

automation-mcp · Summary

A MCP server for macOS desktop automation with mouse, keyboard, screen capture, and window management.

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

automation-mcp · Use cases

  • Automating repetitive UI interactions on macOS applications
  • Building AI agents that can interact with desktop applications visually
  • Creating accessibility tools for users with mobility impairments

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For 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"]
    }
  }
}

automation-mcp · Install

Quick Start

  1. Install [furi](https://github.com/ashwwwin/furi):

``bash furi add ashwwwin/automation-mcp furi start ashwwwin/automation-mcp ``

Manual Installation

  1. Install Bun runtime:

``bash curl -fsSL https://bun.sh/install | bash ``

  1. Clone and install dependencies:

``bash git clone https://github.com/ashwwwin/automation-mcp.git cd automation-mcp bun install ``

  1. Start the server:

```bash # HTTP transport bun run index.ts

# stdio transport bun run index.ts --stdio ```

  1. Grant macOS permissions for Accessibility and Screen Recording.

Claude Desktop Integration

Add to your MCP configuration:

{
  "mcpServers": {
    "automation": {
      "command": "bun",
      "args": ["run", "/path/to/automation-mcp/index.ts", "--stdio"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.