MCP Catalogs
Home

rbxdev-ls vs mcp-server-chart

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

rbxdev-ls
by 0neShot101
mcp-server-chart
by antvis
Stars★ 16★ 4,068
30d uses10,239
Score4284
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

rbxdev-ls · Summary

Roblox-focused MCP server that provides tools for interacting with live game instances and code execution.

mcp-server-chart · Summary

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

rbxdev-ls · Use cases

  • AI assistants helping debug Roblox games by examining game state and executing test code
  • Automating testing procedures by having AI interact with running game instances
  • Assisting with development by having AI analyze code and suggest improvements based on live game data

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

rbxdev-ls · Install

VS Code Extension

Install from VS Code Marketplace or Open VSX:

| Marketplace | Link | | --- | --- | | VS Code Marketplace | [rbxdev.rbxdev-ls](https://marketplace.visualstudio.com/items?itemName=rbxdev.rbxdev-ls) | | Open VSX | [rbxdev/rbxdev-ls](https://open-vsx.org/extension/rbxdev/rbxdev-ls) |

MCP Server (Standalone)

Install with npm:

npm install -g @0neshot101/rbxdev-mcp

Or use with npx:

npx @0neshot101/rbxdev-mcp

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "rbxdev": {
      "command": "npx",
      "args": ["@0neshot101/rbxdev-mcp"]
    }
  }
}

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.