@chrrxs/robloxstudio-mcp 2.15.0 → 2.15.2
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 +201 -271
- package/package.json +2 -2
- package/studio-plugin/INSTALLATION.md +13 -3
- package/studio-plugin/MCPInspectorPlugin.rbxmx +388 -92
- package/studio-plugin/MCPPlugin.rbxmx +388 -92
- package/studio-plugin/src/modules/ClientBroker.ts +12 -2
- package/studio-plugin/src/modules/Communication.ts +22 -5
- package/studio-plugin/src/modules/EvalBridges.ts +6 -5
- package/studio-plugin/src/modules/LuauExec.ts +134 -36
- package/studio-plugin/src/modules/RuntimeLogBuffer.ts +9 -9
- package/studio-plugin/src/modules/State.ts +2 -0
- package/studio-plugin/src/modules/UI.ts +20 -0
- package/studio-plugin/src/modules/handlers/EvalRuntimeHandlers.ts +121 -0
- package/studio-plugin/src/modules/handlers/LogHandlers.ts +5 -6
- package/studio-plugin/src/types/index.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chrrxs/robloxstudio-mcp",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.2",
|
|
4
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",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"repository": {
|
|
30
30
|
"type": "git",
|
|
31
|
-
"url": "https://github.com/chrrxs/robloxstudio-mcp.git"
|
|
31
|
+
"url": "git+https://github.com/chrrxs/robloxstudio-mcp.git"
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://github.com/chrrxs/robloxstudio-mcp#readme",
|
|
34
34
|
"bugs": {
|
|
@@ -15,6 +15,7 @@ Complete your AI assistant integration with this easy-to-install Studio plugin.
|
|
|
15
15
|
### Method 2: Direct Download
|
|
16
16
|
1. **Download the plugin:**
|
|
17
17
|
- **GitHub Release**: [Download MCPPlugin.rbxmx](https://github.com/chrrxs/robloxstudio-mcp/releases/latest/download/MCPPlugin.rbxmx)
|
|
18
|
+
- **CLI installer**: `npx -y @chrrxs/robloxstudio-mcp@latest --install-plugin`
|
|
18
19
|
- This is the official Roblox plugin format
|
|
19
20
|
|
|
20
21
|
2. **Install to plugins folder:**
|
|
@@ -54,7 +55,12 @@ Choose your AI assistant:
|
|
|
54
55
|
|
|
55
56
|
**For Claude Code:**
|
|
56
57
|
```bash
|
|
57
|
-
claude mcp add robloxstudio-mcp
|
|
58
|
+
claude mcp add robloxstudio -- npx -y @chrrxs/robloxstudio-mcp@latest --auto-install-plugin
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
**For Codex CLI:**
|
|
62
|
+
```bash
|
|
63
|
+
codex mcp add robloxstudio -- npx -y @chrrxs/robloxstudio-mcp@latest --auto-install-plugin
|
|
58
64
|
```
|
|
59
65
|
|
|
60
66
|
**For Claude Desktop/Others:**
|
|
@@ -63,12 +69,16 @@ claude mcp add robloxstudio-mcp
|
|
|
63
69
|
"mcpServers": {
|
|
64
70
|
"robloxstudio-mcp": {
|
|
65
71
|
"command": "npx",
|
|
66
|
-
"args": ["-y", "@chrrxs/robloxstudio-mcp"]
|
|
72
|
+
"args": ["-y", "@chrrxs/robloxstudio-mcp@latest", "--auto-install-plugin"]
|
|
67
73
|
}
|
|
68
74
|
}
|
|
69
75
|
}
|
|
70
76
|
```
|
|
71
77
|
|
|
78
|
+
`@latest` floats the server package to the newest npm release. `--auto-install-plugin` copies the matching `.rbxmx` bundled with that package into Studio's Plugins folder when the server starts.
|
|
79
|
+
|
|
80
|
+
If Studio shows a yellow plugin/server version mismatch banner, the connection remains usable. Restart the MCP server with `--auto-install-plugin`, then fully close and reopen Studio so it loads the matching plugin file.
|
|
81
|
+
|
|
72
82
|
<details>
|
|
73
83
|
<summary>Note for native Windows users</summary>
|
|
74
84
|
If you encounter issues, you may need to run it through `cmd`. Update your configuration like this:
|
|
@@ -78,7 +88,7 @@ If you encounter issues, you may need to run it through `cmd`. Update your confi
|
|
|
78
88
|
"mcpServers": {
|
|
79
89
|
"robloxstudio-mcp": {
|
|
80
90
|
"command": "cmd",
|
|
81
|
-
"args": ["/c", "npx", "-y", "@chrrxs/robloxstudio-mcp@latest"]
|
|
91
|
+
"args": ["/c", "npx", "-y", "@chrrxs/robloxstudio-mcp@latest", "--auto-install-plugin"]
|
|
82
92
|
}
|
|
83
93
|
}
|
|
84
94
|
}
|