mcp-server-chart vs weppy-roblox-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | weppy-roblox-mcp by hope1026 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 21 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | PowerShell |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
weppy-roblox-mcp · Summary
An MCP server that connects AI agents to Roblox Studio, enabling direct manipulation of game elements through natural language.
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
weppy-roblox-mcp · Use cases
- Rapid prototyping by describing game mechanics in natural language
- Bulk refactoring of modules across multiple scripts
- Generating procedural terrain, lighting, and assets from single prompts
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"]
}
}
}weppy-roblox-mcp · Install
Quick Install
**One-line install:**
# macOS / Linux
curl -fsSL https://raw.githubusercontent.com/hope1026/weppy-roblox-mcp/main/install.sh | bash
# Windows (PowerShell)
irm https://raw.githubusercontent.com/hope1026/weppy-roblox-mcp/main/install.ps1 | iex**Manual install:**
- Visit the [web install page](https://weppyai.com/en/install) for the Roblox Studio plugin
- Register the MCP server with your AI app:
npx -y @weppy/roblox-mcp@latest**Claude Desktop configuration:** Add to your Claude Desktop config.json:
{
"mcpServers": {
"weppy-roblox": {
"command": "npx",
"args": ["-y", "@weppy/roblox-mcp@latest"]
}
}
}