@chrrxs/robloxstudio-mcp-inspector 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrrxs/robloxstudio-mcp-inspector",
3
- "version": "2.15.0",
3
+ "version": "2.15.2",
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",
@@ -30,7 +30,7 @@
30
30
  "license": "MIT",
31
31
  "repository": {
32
32
  "type": "git",
33
- "url": "https://github.com/chrrxs/robloxstudio-mcp.git"
33
+ "url": "git+https://github.com/chrrxs/robloxstudio-mcp.git"
34
34
  },
35
35
  "homepage": "https://github.com/chrrxs/robloxstudio-mcp#readme",
36
36
  "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
  }