MCP Catalogs
Home

rbxdev-ls vs everything

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

rbxdev-ls
by 0neShot101
everything
by modelcontextprotocol
Stars★ 16★ 85,748
30d uses
Score4277
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.