rbxstudio-mcp 1.14.2 → 1.14.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rbxstudio-mcp",
3
- "version": "1.14.2",
3
+ "version": "1.14.3",
4
4
  "description": "MCP Server for Roblox Studio Integration - Access Studio data, scripts, and objects through AI tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -4119,8 +4119,8 @@ handlers.playSolo = function(requestData)
4119
4119
  -- Use the new StudioTestService API for proper Play Solo mode
4120
4120
  -- Run in background task so we don't block the HTTP response
4121
4121
  activePlayTestTask = task.spawn(function()
4122
- -- ExecutePlayModeAsync requires a non-nil argument (can be empty table)
4123
- local testResult = studioTestService:ExecutePlayModeAsync({})
4122
+ -- ExecutePlayModeAsync(args: Variant?) - per official docs, pass a string identifier
4123
+ local testResult = studioTestService:ExecutePlayModeAsync("MCP_PlayTest")
4124
4124
  activePlayTestTask = nil
4125
4125
  end)
4126
4126