MCP Catalogs
Home

mcp-server-chart vs mcp-browser-agent

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

mcp-server-chart
by antvis
mcp-browser-agent
by imprvhub
Stars★ 4,068★ 38
30d uses10,239
Score8445
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Browser AutomationWeb ScrapingDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month3 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-browser-agent · Summary

An MCP server providing Claude with autonomous browser automation capabilities including DOM manipulation, JavaScript execution, and API requests.

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-browser-agent · Use cases

  • Automating web testing and QA processes through AI agents
  • Web scraping complex sites with dynamic content and JavaScript rendering
  • Automating repetitive browser workflows like form submissions and data extraction

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

mcp-browser-agent · Install

Installation

  1. Clone the repository:
git clone https://github.com/imprvhub/mcp-browser-agent
cd mcp-browser-agent
  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Configure Claude Desktop:

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "browserAgent": {
      "command": "node",
      "args": ["ABSOLUTE_PATH_TO_DIRECTORY/mcp-browser-agent/dist/index.js", "--browser", "chrome"]
    }
  }
}

Replace ABSOLUTE_PATH_TO_DIRECTORY with the actual path to the project directory.

Comparison generated from public README + GitHub signals. Last updated automatically.