@chrrxs/robloxstudio-mcp-inspector 2.20.0 → 2.22.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 +2626 -229
- package/package.json +2 -2
- package/studio-plugin/MCPInspectorPlugin.rbxmx +3 -3
- package/studio-plugin/MCPPlugin.rbxmx +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chrrxs/robloxstudio-mcp-inspector",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.22.0",
|
|
4
4
|
"description": "Read-only MCP server for inspecting and debugging Roblox Studio from AI coding tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
41
|
-
"
|
|
41
|
+
"acorn": "^8.11.0",
|
|
42
42
|
"express": "^4.18.2",
|
|
43
43
|
"node-fetch": "^3.3.2",
|
|
44
44
|
"uuid": "^9.0.1",
|
|
@@ -1413,9 +1413,9 @@ local function computeBridgeStamp()
|
|
|
1413
1413
|
for i = 1, #combined do
|
|
1414
1414
|
h = (h * 33 + (string.byte(combined, i))) % 2147483647
|
|
1415
1415
|
end
|
|
1416
|
-
-- "2.
|
|
1416
|
+
-- "2.22.0" is replaced with the package version at package time
|
|
1417
1417
|
-- (scripts/build-plugin.mjs injectVersion), so a release bump also restamps.
|
|
1418
|
-
return `{tostring(h)}-2.
|
|
1418
|
+
return `{tostring(h)}-2.22.0`
|
|
1419
1419
|
end
|
|
1420
1420
|
local BRIDGE_STAMP = computeBridgeStamp()
|
|
1421
1421
|
local function setSource(scriptInst, source)
|
|
@@ -10745,7 +10745,7 @@ return {
|
|
|
10745
10745
|
<Properties>
|
|
10746
10746
|
<string name="Name">State</string>
|
|
10747
10747
|
<string name="Source"><![CDATA[-- Compiled with roblox-ts v3.0.0
|
|
10748
|
-
local CURRENT_VERSION = "2.
|
|
10748
|
+
local CURRENT_VERSION = "2.22.0"
|
|
10749
10749
|
local PLUGIN_VARIANT = "inspector"
|
|
10750
10750
|
local BASE_PORT = 58741
|
|
10751
10751
|
local function createConnection(port)
|
|
@@ -1413,9 +1413,9 @@ local function computeBridgeStamp()
|
|
|
1413
1413
|
for i = 1, #combined do
|
|
1414
1414
|
h = (h * 33 + (string.byte(combined, i))) % 2147483647
|
|
1415
1415
|
end
|
|
1416
|
-
-- "2.
|
|
1416
|
+
-- "2.22.0" is replaced with the package version at package time
|
|
1417
1417
|
-- (scripts/build-plugin.mjs injectVersion), so a release bump also restamps.
|
|
1418
|
-
return `{tostring(h)}-2.
|
|
1418
|
+
return `{tostring(h)}-2.22.0`
|
|
1419
1419
|
end
|
|
1420
1420
|
local BRIDGE_STAMP = computeBridgeStamp()
|
|
1421
1421
|
local function setSource(scriptInst, source)
|
|
@@ -10745,7 +10745,7 @@ return {
|
|
|
10745
10745
|
<Properties>
|
|
10746
10746
|
<string name="Name">State</string>
|
|
10747
10747
|
<string name="Source"><![CDATA[-- Compiled with roblox-ts v3.0.0
|
|
10748
|
-
local CURRENT_VERSION = "2.
|
|
10748
|
+
local CURRENT_VERSION = "2.22.0"
|
|
10749
10749
|
local PLUGIN_VARIANT = "main"
|
|
10750
10750
|
local BASE_PORT = 58741
|
|
10751
10751
|
local function createConnection(port)
|