MCP Catalogs
Home

Unreal-MCP vs mcp-server-chart

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

Unreal-MCP
by aadeshrao123
mcp-server-chart
by antvis
Stars★ 28★ 4,068
30d uses10,239
Score4484
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageC++TypeScript
Last committhis monththis month

Unreal-MCP · Summary

MCP server providing 280+ commands to control Unreal Engine 5 from AI coding assistants.

mcp-server-chart · Summary

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

Unreal-MCP · Use cases

  • Creating and managing game assets from AI coding environments
  • Automating Unreal Engine workflow through AI assistants
  • Integrating Unreal development with AI-powered code completion

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

Unreal-MCP · Install

Installation

Option A: CLI (Recommended for Claude Code)

# Install CLI tool
npm install -g unrealcli

# Setup in UE5 project
cd YourProject/
ue-cli init
ue-cli doctor

Option B: MCP Server (For Cursor, Windsurf, etc.)

# Clone plugin to project
git clone https://github.com/aadeshrao123/Unreal-MCP.git Plugins/UnrealMCP

# Install Python server
pip install unrealmcp

# Add to Claude Desktop config (example)
{
  "mcpServers": {
    "unreal": {
      "command": "unrealmcp"
    }
  }
}

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.