MCP Catalogs
Home

rbxdev-ls vs ultimate_mcp_server

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

rbxdev-ls
by 0neShot101
ultimate_mcp_server
by Dicklesworthstone
Stars★ 16★ 149
30d uses
Score4285
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit1 mo ago2 mo ago

rbxdev-ls · Summary

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

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

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

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

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

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.