MCP Catalogs
Home

mcp-server-chart vs better-code-review-graph

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

mcp-server-chart
by antvis
better-code-review-graph
by n24q02m
Stars★ 4,068★ 46
30d uses10,239
Score8447
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsKnowledge GraphAI / LLM Tools
LanguageTypeScriptPython
Last committhis monththis month

mcp-server-chart · Summary

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

better-code-review-graph · Summary

MCP server for token-efficient code reviews using knowledge graphs with fixed search and configurable embeddings.

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

better-code-review-graph · Use cases

  • Code review automation with token-efficient context generation
  • Impact analysis when modifying critical functions in large codebases
  • Semantic search across codebases using vector embeddings

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

better-code-review-graph · Install

Installation

With Claude Desktop

  1. Add to your claude_desktop_config.json:
{
  "mcpServers": {
    "better-code-review-graph": {
      "command": "uv",
      "args": ["run", "better-code-review-graph", "stdio"],
      "env": {
        "CRG_DATABASE_URL": "sqlite:///code-review-graph.db"
      }
    }
  }
}

With pip

pip install better-code-review-graph
better-code-review-graph init

With Docker

docker run -it --rm -v "$(pwd):/app" -e CRG_DATABASE_URL="sqlite:///code-review-graph.db" n24q02m/better-code-review-graph:latest"
Comparison generated from public README + GitHub signals. Last updated automatically.