weppy-roblox-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
weppy-roblox-mcp by hope1026 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 21 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | PowerShell | TypeScript |
| Last commit | this month | this month |
weppy-roblox-mcp · Summary
An MCP server that connects AI agents to Roblox Studio, enabling direct manipulation of game elements through natural language.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
weppy-roblox-mcp · Use cases
- Rapid prototyping by describing game mechanics in natural language
- Bulk refactoring of modules across multiple scripts
- Generating procedural terrain, lighting, and assets from single prompts
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
weppy-roblox-mcp · Install
Quick Install
**One-line install:**
# macOS / Linux
curl -fsSL https://raw.githubusercontent.com/hope1026/weppy-roblox-mcp/main/install.sh | bash
# Windows (PowerShell)
irm https://raw.githubusercontent.com/hope1026/weppy-roblox-mcp/main/install.ps1 | iex**Manual install:**
- Visit the [web install page](https://weppyai.com/en/install) for the Roblox Studio plugin
- Register the MCP server with your AI app:
npx -y @weppy/roblox-mcp@latest**Claude Desktop configuration:** Add to your Claude Desktop config.json:
{
"mcpServers": {
"weppy-roblox": {
"command": "npx",
"args": ["-y", "@weppy/roblox-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