MCP Catalogs
Home

mcp-server-chart vs mcp-aoai-web-browsing

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

mcp-server-chart
by antvis
mcp-aoai-web-browsing
by kimtth
Stars★ 4,068★ 33
30d uses10,239
Score8441
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Browser AutomationWeb ScrapingDeveloper Tools
LanguageTypeScriptPython
Last committhis month2 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-aoai-web-browsing · Summary

MCP server with Playwright browser automation via FastMCP, supporting both Azure and OpenAI APIs.

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-aoai-web-browsing · Use cases

  • Web automation and testing through LLM interactions
  • Browser-based data extraction and analysis
  • AI-powered web navigation assistance

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-aoai-web-browsing · Install

# Install uv for dependency management
pip install uv

# Install dependencies
uv sync

# Run the application
python chatgui.py

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "browser-navigator": {
      "command": "uv",
      "args": ["run", "fastmcp", "run", "./server/browser_navigator_server.py:app"],
      "cwd": "/path/to/mcp-aoai-web-browsing",
      "env": {
        "AZURE_OPEN_AI_ENDPOINT": "...",
        "AZURE_OPEN_AI_API_KEY": "...",
        "AZURE_OPEN_AI_DEPLOYMENT_MODEL": "...",
        "AZURE_OPEN_AI_API_VERSION": "..."
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.