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 runreal | |
|---|---|---|
| Stars | ★ 4,068 | ★ 101 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsMedia |
| Language | TypeScript | Python |
| Last commit | this month | 12 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
An MCP server for Unreal Engine that uses Python remote execution without requiring a new 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
- Automating Unreal Engine asset management and validation through AI assistants
- Generating game content and levels using natural language commands
- Streamlining Unreal Engine development workflows with AI-powered tools
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
- Enable Python Editor Script Plugin and Remote Execution in Unreal Engine
- Add to your Claude Desktop config:
{
"mcpServers": {
"unreal": {
"command": "npx",
"args": [
"-y",
"@runreal/unreal-mcp"
]
}
}
}