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 | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this 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
- Install the [Studio plugin](https://github.com/boshyxd/robloxstudio-mcp/releases) to your Plugins folder
- Enable **Allow HTTP Requests** in Experience Settings > Security
- 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