robloxstudio-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
robloxstudio-mcp by boshyxd | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 431 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
robloxstudio-mcp · Summary
MCP server connecting AI assistants to Roblox Studio for game development.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
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
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"]
}
}
}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.