MCP Catalogs
Home

mcp-server-chart vs csv-editor

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

mcp-server-chart
by antvis
csv-editor
by santoshray02
Stars★ 4,068★ 23
30d uses10,239
Score8445
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsProductivitydata-analysis
LanguageTypeScriptPython
Last committhis month1 mo ago

mcp-server-chart · Summary

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

csv-editor · Summary

Stateful CSV editing MCP server with 39 pandas-powered tools, sessions, undo/redo and auto-save features.

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

csv-editor · Use cases

  • Data cleaning and preprocessing for analysts to remove duplicates, fix data types, and handle missing values
  • ETL pipelines with complex transformations like filtering, aggregating, and converting between data formats
  • Data quality assurance through schema validation, outlier detection, and comprehensive quality scoring

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

csv-editor · Install

Installing via Smithery

npx -y @smithery/cli install @santoshray02/csv-editor --client claude

Fastest Installation (Recommended)

# Install uv if needed (one-time setup)
curl -LsSf https://astral.sh/uv/install.sh | sh

# Clone and run
git clone https://github.com/santoshray02/csv-editor.git
cd csv-editor
uv sync
uv run csv-editor

Claude Desktop Configuration

Add to your claude_desktop_config.json:

  • **macOS:** ~/Library/Application Support/Claude/claude_desktop_config.json
  • **Windows:** %APPDATA%\Claude\claude_desktop_config.json
  • **Linux:** ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "csv-editor": {
      "command": "uv",
      "args": ["tool", "run", "csv-editor"],
      "env": {
        "CSV_MAX_FILE_SIZE": "1073741824"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.