weppy-roblox-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
weppy-roblox-mcp by hope1026 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 21 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.