@chrrxs/robloxstudio-mcp 2.12.0 → 2.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1508 -64
- package/package.json +2 -2
- package/studio-plugin/INSTALLATION.md +1 -0
- package/studio-plugin/MCPInspectorPlugin.rbxmx +1312 -325
- package/studio-plugin/MCPPlugin.rbxmx +705 -97
- package/studio-plugin/src/modules/ClientBroker.ts +91 -1
- package/studio-plugin/src/modules/Communication.ts +22 -0
- package/studio-plugin/src/modules/EvalBridges.ts +60 -11
- package/studio-plugin/src/modules/RenderMonitor.ts +60 -0
- package/studio-plugin/src/modules/handlers/CaptureHandlers.ts +45 -3
- package/studio-plugin/src/modules/handlers/InputHandlers.ts +100 -39
- package/studio-plugin/src/modules/handlers/TestHandlers.ts +257 -18
- package/studio-plugin/src/server/index.server.ts +6 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chrrxs/robloxstudio-mcp",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "MCP
|
|
3
|
+
"version": "2.14.0",
|
|
4
|
+
"description": "MCP server for testing, debugging, and controlling Roblox Studio from AI coding tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -21,6 +21,7 @@ Complete your AI assistant integration with this easy-to-install Studio plugin.
|
|
|
21
21
|
- **Windows**: Save to `%LOCALAPPDATA%/Roblox/Plugins/`
|
|
22
22
|
- **macOS**: Save to `~/Documents/Roblox/Plugins/`
|
|
23
23
|
- **Or use Studio**: Plugins tab > Plugins Folder > drop the file
|
|
24
|
+
- Keep only one MCP variant in this folder. Remove `MCPInspectorPlugin.rbxmx` if installing `MCPPlugin.rbxmx`, and remove `MCPPlugin.rbxmx` if installing the inspector variant.
|
|
24
25
|
|
|
25
26
|
3. **Restart Roblox Studio** - Plugin appears automatically!
|
|
26
27
|
|