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 chongdashu | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,879 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | C++ |
| Last commit | this month | 13 mo ago |
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 natural language commands.
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 Unreal Engine scene creation and manipulation through AI assistants
- Develop and compile Blueprints using natural language commands
- Control Unreal Editor viewport and camera positioning via AI
- Streamline game development workflows by integrating AI with UE5
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor 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.5+ - Python 3.12+ - MCP Client (Claude Desktop, Cursor, Windsurf)
- **Plugin Setup**
- Copy MCPGameProject/Plugins/UnrealMCP to your project's Plugins folder - Enable the plugin in Unreal Editor: Edit > Plugins > UnrealMCP - Generate and build Visual Studio project files
- **Python Server Setup**
- Set up Python environment - Navigate to Python folder - Install dependencies - Run unreal_mcp_server.py
- **Configure MCP Client**
Add to your client configuration:
{
"mcpServers": {
"unrealMCP": {
"command": "uv",
"args": [
"--directory",
"<path/to/the/folder/PYTHON>",
"run",
"unreal_mcp_server.py"
]
}
}
}Configuration locations:
- Claude Desktop:
~/.config/claude-desktop/mcp.json - Cursor:
.cursor/mcp.json - Windsurf:
~/.config/windsurf/mcp.json