MCP Catalogs
Home

code-mcp vs mcp-server-chart

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

code-mcp
by 54yyyu
mcp-server-chart
by antvis
Stars★ 37★ 4,068
30d uses10,239
Score3884
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit14 mo agothis month

code-mcp · Summary

Code-MCP connects Claude AI to dev environments via MCP, enabling terminal commands and file operations through the AI interface.

mcp-server-chart · Summary

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

code-mcp · Use cases

  • Enable Claude AI to directly interact with your codebase through terminal commands and file operations
  • Work with remote codebases by connecting to a Code-MCP instance running on a remote server
  • Perform code analysis and editing with pattern matching and function-level operations

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

code-mcp · Install

Installation

Quick Installation

**macOS / Linux:**

curl -LsSf https://raw.githubusercontent.com/54yyyu/code-mcp/main/install.sh | sh

**Windows:**

powershell -c "Invoke-WebRequest -Uri https://raw.githubusercontent.com/54yyyu/code-mcp/main/install.ps1 -OutFile install.ps1; .\install.ps1"
Claude Desktop Integration
  1. Run the setup helper with your project path:
code-mcp-setup /path/to/your/project
  1. Or manually edit Claude Desktop configuration (claude_desktop_config.json):
{
    "mcpServers": {
        "code": {
            "command": "code-mcp",
            "args": [
                "/path/to/your/project"
            ]
        }
    }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.