Initial commit: Roblox Studio MCP Server for Claude Code

- MCP server with 12 tools for Roblox manipulation
- WebSocket communication with Roblox Studio
- Create scripts, parts, models, GUIs
- Execute Lua code, control playtest
- Full documentation and examples

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
admin
2026-01-29 00:38:36 +04:00
Unverified
commit 9c44cb514f
12 changed files with 3535 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "roblox-mcp-server",
"version": "1.0.0",
"description": "MCP server for controlling Roblox Studio via Claude Code",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"keywords": ["mcp", "roblox", "roblox-studio", "claude"],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"express": "^4.18.2",
"cors": "^2.8.5",
"ws": "^8.16.0"
}
}