MCP Catalogs
Home

mcp-server-chart vs Unreal_mcp

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

mcp-server-chart
by antvis
Unreal_mcp
by ChiR24
Stars★ 4,068★ 622
30d uses10,239
Score8453
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsMedia
LanguageTypeScriptC++
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.

Unreal_mcp · Summary

MCP server enabling AI assistants to control Unreal Engine through native C++ Automation Bridge plugin.

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 · Use cases

  • Automate game development workflows by scripting asset creation and scene configuration
  • Create AI-powered level design assistants that can generate and modify game environments
  • Build testing automation frameworks for validating game functionality across different scenarios

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

Unreal_mcp · Install

Installation

Prerequisites

  • Unreal Engine 5.0-5.8
  • Node.js 18+ (for TypeScript bridge option)

Native MCP Transport (Recommended)

  1. Install the MCP Automation Bridge plugin in your Unreal project
  2. Enable "Native MCP" in Project Settings > Plugins > MCP Automation Bridge
  3. Configure your MCP client to connect to http://localhost:3000/mcp

Claude Desktop Configuration

{
  "mcpServers": {
    "unreal-engine": {
      "type": "url",
      "url": "http://localhost:3000/mcp"
    }
  }
}

TypeScript Bridge (Alternative)

  1. Install the server: npx unreal-engine-mcp-server
  2. Configure MCP client to run the CLI with Node.js
Comparison generated from public README + GitHub signals. Last updated automatically.