MCP Catalogs
Home

robloxstudio-mcp vs everything

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

robloxstudio-mcp
by boshyxd
everything
by modelcontextprotocol
Stars★ 431★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

robloxstudio-mcp · Summary

MCP server connecting AI assistants to Roblox Studio for game development.

everything · Summary

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

robloxstudio-mcp · Use cases

  • Analyze and restructure existing Roblox games programmatically
  • Batch generate and modify game objects with AI assistance
  • Debug and optimize code by letting AI examine script behavior
  • Create and review game documentation from code structure

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

robloxstudio-mcp · Install

Installation

  1. Install the [Studio plugin](https://github.com/boshyxd/robloxstudio-mcp/releases) to your Plugins folder
  2. Enable **Allow HTTP Requests** in Experience Settings > Security
  3. Connect your AI:

**Claude Code:**

claude mcp add robloxstudio -- npx -y robloxstudio-mcp@latest

**For Claude Desktop, Cursor, etc.:**

{
  "mcpServers": {
    "robloxstudio-mcp": {
      "command": "npx",
      "args": ["-y", "robloxstudio-mcp@latest"]
    }
  }
}

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.