MCP Catalogs
Home

mcp-server-chart vs Overture

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

mcp-server-chart
by antvis
Overture
by SixHq
Stars★ 4,068★ 621
30d uses10,239
Score8453
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
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.

Overture · Summary

Overture is an MCP server that visualizes AI coding agent execution plans as interactive flowcharts before code is written.

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

Overture · Use cases

  • Visualizing complex AI coding workflows before execution to ensure proper understanding
  • Collaborating with team members on code plans by sharing the interactive flowchart
  • Debugging and optimizing AI agent execution by identifying problematic nodes
  • Teaching and learning about code generation processes through visual representation

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

Overture · Install

Overture is an MCP server that can be installed with various AI coding agents:

# Claude Code
claude mcp add overture-mcp -- npx overture-mcp

# Cursor (add to ~/.cursor/mcp.json)
{
  "mcpServers": {
    "overture": {
      "command": "npx",
      "args": ["overture-mcp"]
    }
  }
}

# GitHub Copilot (create .vscode/mcp.json)
{
  "servers": {
    "overture": {
      "command": "npx",
      "args": ["overture-mcp"]
    }
  }
}

# Global installation (optional)
npm install -g overture-mcp
Comparison generated from public README + GitHub signals. Last updated automatically.