robloxstudio-mcp 1.6.0 → 1.7.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/README.md CHANGED
@@ -1,280 +1,296 @@
1
- # Roblox Studio MCP Server
2
-
3
- MCP server for AI-powered Roblox Studio integration. 18 specialized tools for exploring projects, analyzing scripts, and performing bulk operations.
4
-
5
- <a href="https://glama.ai/mcp/servers/@boshyxd/robloxstudio-mcp">
6
- <img width="380" height="200" src="https://glama.ai/mcp/servers/@boshyxd/robloxstudio-mcp/badge" alt="Roblox Studio Server MCP server" />
7
- </a>
8
-
9
- ## Quick Start
10
-
11
- **For Claude Code users:**
12
- ```bash
13
- claude mcp add robloxstudio -- npx -y robloxstudio-mcp
14
- ```
15
-
16
- **For other MCP clients (Claude Desktop, etc.):**
17
- ```json
18
- {
19
- "mcpServers": {
20
- "robloxstudio-mcp": {
21
- "command": "npx",
22
- "args": ["-y", "robloxstudio-mcp"],
23
- "description": "Advanced Roblox Studio integration for AI assistants"
24
- }
25
- }
26
- }
27
- ```
28
-
29
- ## Studio Plugin Setup (Required)
30
-
31
- The MCP server requires a companion Roblox Studio plugin:
32
-
33
- 1. **Roblox Creator Store**:
34
- - Install from: https://create.roblox.com/store/asset/75577477776988
35
- - Click "Install" - Opens in Studio automatically
36
-
37
- 2. **Manual download**:
38
- - Download [MCPPlugin.rbxmx](https://github.com/boshyxd/robloxstudio-mcp/releases/latest/download/MCPPlugin.rbxmx)
39
- - Save to your `%LOCALAPPDATA%/Roblox/Plugins` folder
40
-
41
- 3. **Advanced setup**:
42
- - See [studio-plugin/INSTALLATION.md](studio-plugin/INSTALLATION.md) for other methods
43
-
44
- **After installation:**
45
- - Enable "Allow HTTP Requests" in Game Settings > Security
46
- - Click the "MCP Server" button in the Plugins toolbar
47
- - Status should show "Connected" when working
48
-
49
- ## Architecture Overview
50
-
51
- Dual-component system bridging Roblox Studio with AI assistants:
52
-
53
- ```mermaid
54
- %%{init: {'theme':'dark', 'themeVariables': {'primaryColor':'#2d3748', 'primaryTextColor':'#ffffff', 'primaryBorderColor':'#4a5568', 'lineColor':'#718096', 'sectionBkgColor':'#1a202c', 'altSectionBkgColor':'#2d3748', 'gridColor':'#4a5568', 'secondaryColor':'#2b6cb0', 'tertiaryColor':'#319795'}}}%%
55
- graph TB
56
- subgraph AI_ENV ["AI Environment"]
57
- AI["AI Assistant<br/>Claude Code/Desktop"]
58
- MCP["MCP Server<br/>Node.js + TypeScript"]
59
- end
60
-
61
- subgraph COMM_LAYER ["Communication Layer"]
62
- HTTP["HTTP Bridge<br/>localhost:3002"]
63
- QUEUE["Request Queue<br/>UUID tracking"]
64
- end
65
-
66
- subgraph STUDIO_ENV ["Roblox Studio Environment"]
67
- PLUGIN["Studio Plugin<br/>Luau Script"]
68
- STUDIO["Roblox Studio<br/>APIs & Data"]
69
- end
70
-
71
- subgraph TOOLS ["18 AI Tools"]
72
- FILE["File System<br/>Trees, Search"]
73
- CONTEXT["Studio Context<br/>Services, Objects"]
74
- PROPS["Properties<br/>Get, Set, Mass Ops"]
75
- CREATE["Object Creation<br/>Single, Mass, Properties"]
76
- PROJECT["Project Analysis<br/>Smart Structure"]
77
- end
78
-
79
- AI -->|stdio| MCP
80
- MCP -->|HTTP POST| HTTP
81
- HTTP -->|Queue Request| QUEUE
82
- PLUGIN -->|Poll every 500ms| HTTP
83
- HTTP -->|Pending Work| PLUGIN
84
- PLUGIN -->|Execute APIs| STUDIO
85
- STUDIO -->|Return Data| PLUGIN
86
- PLUGIN -->|HTTP Response| HTTP
87
- HTTP -->|Resolve Promise| MCP
88
- MCP -->|Tool Result| AI
89
-
90
- MCP -.->|Exposes| FILE
91
- MCP -.->|Exposes| CONTEXT
92
- MCP -.->|Exposes| PROPS
93
- MCP -.->|Exposes| CREATE
94
- MCP -.->|Exposes| PROJECT
95
-
96
- classDef aiStyle fill:#1e40af,stroke:#3b82f6,stroke-width:2px,color:#ffffff
97
- classDef mcpStyle fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:#ffffff
98
- classDef httpStyle fill:#ea580c,stroke:#f97316,stroke-width:2px,color:#ffffff
99
- classDef pluginStyle fill:#059669,stroke:#10b981,stroke-width:2px,color:#ffffff
100
- classDef studioStyle fill:#dc2626,stroke:#ef4444,stroke-width:2px,color:#ffffff
101
- classDef toolStyle fill:#0891b2,stroke:#06b6d4,stroke-width:2px,color:#ffffff
102
-
103
- class AI aiStyle
104
- class MCP mcpStyle
105
- class HTTP,QUEUE httpStyle
106
- class PLUGIN pluginStyle
107
- class STUDIO studioStyle
108
- class FILE,CONTEXT,PROPS,CREATE,PROJECT toolStyle
109
- ```
110
-
111
- ### Key Components:
112
- - MCP Server (Node.js/TypeScript) - Exposes 18 tools via stdio
113
- - HTTP Bridge - Request/response queue on localhost:3002
114
- - Studio Plugin (Luau) - Polls server and executes API calls
115
- - Smart Caching - Efficient data transfer
116
-
117
- ## 18 AI Tools
118
-
119
- ### File System Tools
120
- - `get_file_tree` - Complete project hierarchy with scripts, models, folders
121
- - `search_files` - Find files by name, type, or content patterns
122
-
123
- ### Studio Context Tools
124
- - `get_place_info` - Place ID, name, game settings, workspace info
125
- - `get_services` - All Roblox services and their child counts
126
- - `search_objects` - Find instances by name, class, or properties
127
-
128
- ### Instance & Property Tools
129
- - `get_instance_properties` - Complete property dump for any object
130
- - `get_instance_children` - Child objects with metadata
131
- - `search_by_property` - Find objects with specific property values
132
- - `get_class_info` - Available properties/methods for Roblox classes
133
-
134
- ### Property Modification Tools
135
- - `set_property` - Set a property on any Roblox instance
136
- - `mass_set_property` - Set the same property on multiple instances
137
- - `mass_get_property` - Get the same property from multiple instances
138
-
139
- ### Object Creation Tools
140
- - `create_object` - Create a new Roblox object instance
141
- - `create_object_with_properties` - Create objects with initial properties
142
- - `mass_create_objects` - Create multiple objects at once
143
- - `mass_create_objects_with_properties` - Create multiple objects with properties
144
- - `delete_object` - Delete a Roblox object instance
145
-
146
- ### Project Analysis Tools
147
- - `get_project_structure` - Smart hierarchy with depth control (recommended: 5-10)
148
-
149
- > Note: Previous tools removed: `get_file_content`, `get_file_properties`, `get_selection`, `get_dependencies`, `validate_references`. Use Rojo/Argon workflows instead.
150
-
151
- ## AI-Optimized Features
152
-
153
- ### Mass Operations (v1.3.0)
154
- - Bulk property editing
155
- - Mass object creation
156
- - Batch property reading
157
- - Atomic undo/redo operations
158
-
159
- ```typescript
160
- // Example: Set multiple parts to red
161
- mass_set_property(["game.Workspace.Part1", "game.Workspace.Part2"], "BrickColor", "Really red")
162
- ```
163
-
164
- ### Smart Project Structure
165
- - Service overview with child counts
166
- - Path-based exploration: `get_project_structure("game.ServerStorage", maxDepth=5)`
167
- - Script-only filtering for code analysis
168
- - Intelligent grouping for large folders
169
- - Recommended maxDepth=5-10
170
-
171
- ### Rich Metadata
172
- - Script status tracking
173
- - GUI intelligence
174
- - Performance optimized
175
-
176
- ## Development & Testing
177
-
178
- ### Commands
179
- ```bash
180
- npm run dev # Development server with hot reload
181
- npm run build # Production build
182
- npm start # Run built server
183
- npm run lint # ESLint code quality
184
- npm run typecheck # TypeScript validation
185
- ```
186
-
187
- ### Plugin Development
188
- - Live reload
189
- - Robust error handling
190
- - Debug logging
191
- - Visual status indicators
192
-
193
- ## Communication Protocol
194
-
195
- ```mermaid
196
- %%{init: {'theme':'dark', 'themeVariables': {'primaryColor':'#2d3748', 'primaryTextColor':'#ffffff', 'primaryBorderColor':'#4a5568', 'lineColor':'#10b981', 'sectionBkgColor':'#1a202c', 'altSectionBkgColor':'#2d3748', 'gridColor':'#4a5568', 'secondaryColor':'#3b82f6', 'tertiaryColor':'#8b5cf6', 'background':'#1a202c', 'mainBkg':'#2d3748', 'secondBkg':'#374151', 'tertiaryColor':'#6366f1'}}}%%
197
- sequenceDiagram
198
- participant AI as AI Assistant
199
- participant MCP as MCP Server
200
- participant HTTP as HTTP Bridge
201
- participant PLUGIN as Studio Plugin
202
- participant STUDIO as Roblox Studio
203
-
204
- Note over AI,STUDIO: Tool Request Flow
205
-
206
- AI->>+MCP: Call tool (e.g., get_file_tree)
207
- MCP->>+HTTP: Queue request with UUID
208
- HTTP->>HTTP: Store in pending requests map
209
- HTTP-->>-MCP: Request queued
210
-
211
- Note over PLUGIN: Polling every 500ms
212
- PLUGIN->>+HTTP: GET /poll
213
- HTTP->>-PLUGIN: Return pending request + UUID
214
-
215
- PLUGIN->>+STUDIO: Execute Studio APIs
216
- Note over STUDIO: game.ServerStorage<br/>Selection:Get()<br/>Instance properties
217
- STUDIO->>-PLUGIN: Return Studio data
218
-
219
- PLUGIN->>+HTTP: POST /response with UUID + data
220
- HTTP->>-MCP: Resolve promise with data
221
- MCP->>-AI: Return tool result
222
-
223
- Note over AI,STUDIO: Error Handling
224
-
225
- alt Request Timeout (30s)
226
- HTTP->>MCP: Reject promise with timeout
227
- MCP->>AI: Return error message
228
- end
229
-
230
- alt Plugin Disconnected
231
- PLUGIN->>HTTP: Connection lost
232
- HTTP->>HTTP: Exponential backoff retry
233
- Note over PLUGIN: Status: "Waiting for server..."
234
- end
235
- ```
236
-
237
- **Features:**
238
- - 30-second timeouts with exponential backoff
239
- - Automatic retries
240
- - Response limiting
241
- - Request deduplication
242
-
243
- ## Example Usage
244
-
245
- ```javascript
246
- // Get service overview
247
- get_project_structure()
248
-
249
- // Explore weapons folder
250
- get_project_structure("game.ServerStorage.Weapons", maxDepth=2)
251
-
252
- // Find all Sound objects
253
- search_by_property("ClassName", "Sound")
254
-
255
- // Check script dependencies
256
- get_dependencies("game.ServerScriptService.MainScript")
257
-
258
- // Find broken references
259
- validate_references()
260
-
261
- // Get UI component details
262
- get_instance_properties("game.StarterGui.MainMenu.SettingsFrame")
263
- ```
264
-
265
- ## Configuration
266
-
267
- **Environment Variables:**
268
- - `MCP_SERVER_PORT` - MCP server port (default: stdio)
269
- - `HTTP_SERVER_PORT` - HTTP bridge port (default: 3002)
270
- - `PLUGIN_POLL_INTERVAL` - Plugin poll frequency (default: 500ms)
271
- - `REQUEST_TIMEOUT` - Request timeout (default: 30000ms)
272
-
273
- **Studio Settings:**
274
- - **Allow HTTP Requests** (Game Settings > Security)
275
- - **HttpService.HttpEnabled = true**
276
- - **Plugin activated** via toolbar button
277
-
278
- ## License
279
-
1
+ # Roblox Studio MCP Server
2
+
3
+ MCP server for AI-powered Roblox Studio integration. 18 specialized tools for exploring projects, analyzing scripts, and performing bulk operations.
4
+
5
+ <a href="https://glama.ai/mcp/servers/@boshyxd/robloxstudio-mcp">
6
+ <img width="380" height="200" src="https://glama.ai/mcp/servers/@boshyxd/robloxstudio-mcp/badge" alt="Roblox Studio Server MCP server" />
7
+ </a>
8
+
9
+ ## Quick Start
10
+
11
+ **For Claude Code users:**
12
+ ```bash
13
+ claude mcp add robloxstudio -- npx -y robloxstudio-mcp
14
+ ```
15
+
16
+ **For other MCP clients (Claude Desktop, etc.):**
17
+ ```json
18
+ {
19
+ "mcpServers": {
20
+ "robloxstudio-mcp": {
21
+ "command": "npx",
22
+ "args": ["-y", "robloxstudio-mcp"],
23
+ "description": "Advanced Roblox Studio integration for AI assistants"
24
+ }
25
+ }
26
+ }
27
+ ```
28
+
29
+ <details>
30
+ <summary>Note for native Windows users</summary>
31
+ If you encounter issues, you may need to run it through `cmd`. Update your configuration like this:
32
+
33
+ ```json
34
+ {
35
+ "mcpServers": {
36
+ "robloxstudio-mcp": {
37
+ "command": "cmd",
38
+ "args": ["/c", "npx", "-y", "robloxstudio-mcp@latest"]
39
+ }
40
+ }
41
+ }
42
+ ```
43
+ </details>
44
+
45
+ ## Studio Plugin Setup (Required)
46
+
47
+ The MCP server requires a companion Roblox Studio plugin:
48
+
49
+ 1. **Roblox Creator Store**:
50
+ - Install from: https://create.roblox.com/store/asset/75577477776988
51
+ - Click "Install" - Opens in Studio automatically
52
+
53
+ 2. **Manual download**:
54
+ - Download [MCPPlugin.rbxmx](https://github.com/boshyxd/robloxstudio-mcp/releases/latest/download/MCPPlugin.rbxmx)
55
+ - Save to your `%LOCALAPPDATA%/Roblox/Plugins` folder
56
+
57
+ 3. **Advanced setup**:
58
+ - See [studio-plugin/INSTALLATION.md](studio-plugin/INSTALLATION.md) for other methods
59
+
60
+ **After installation:**
61
+ - Enable "Allow HTTP Requests" in Game Settings > Security
62
+ - Click the "MCP Server" button in the Plugins toolbar
63
+ - Status should show "Connected" when working
64
+
65
+ ## Architecture Overview
66
+
67
+ Dual-component system bridging Roblox Studio with AI assistants:
68
+
69
+ ```mermaid
70
+ %%{init: {'theme':'dark', 'themeVariables': {'primaryColor':'#2d3748', 'primaryTextColor':'#ffffff', 'primaryBorderColor':'#4a5568', 'lineColor':'#718096', 'sectionBkgColor':'#1a202c', 'altSectionBkgColor':'#2d3748', 'gridColor':'#4a5568', 'secondaryColor':'#2b6cb0', 'tertiaryColor':'#319795'}}}%%
71
+ graph TB
72
+ subgraph AI_ENV ["AI Environment"]
73
+ AI["AI Assistant<br/>Claude Code/Desktop"]
74
+ MCP["MCP Server<br/>Node.js + TypeScript"]
75
+ end
76
+
77
+ subgraph COMM_LAYER ["Communication Layer"]
78
+ HTTP["HTTP Bridge<br/>localhost:3002"]
79
+ QUEUE["Request Queue<br/>UUID tracking"]
80
+ end
81
+
82
+ subgraph STUDIO_ENV ["Roblox Studio Environment"]
83
+ PLUGIN["Studio Plugin<br/>Luau Script"]
84
+ STUDIO["Roblox Studio<br/>APIs & Data"]
85
+ end
86
+
87
+ subgraph TOOLS ["18 AI Tools"]
88
+ FILE["File System<br/>Trees, Search"]
89
+ CONTEXT["Studio Context<br/>Services, Objects"]
90
+ PROPS["Properties<br/>Get, Set, Mass Ops"]
91
+ CREATE["Object Creation<br/>Single, Mass, Properties"]
92
+ PROJECT["Project Analysis<br/>Smart Structure"]
93
+ end
94
+
95
+ AI -->|stdio| MCP
96
+ MCP -->|HTTP POST| HTTP
97
+ HTTP -->|Queue Request| QUEUE
98
+ PLUGIN -->|Poll every 500ms| HTTP
99
+ HTTP -->|Pending Work| PLUGIN
100
+ PLUGIN -->|Execute APIs| STUDIO
101
+ STUDIO -->|Return Data| PLUGIN
102
+ PLUGIN -->|HTTP Response| HTTP
103
+ HTTP -->|Resolve Promise| MCP
104
+ MCP -->|Tool Result| AI
105
+
106
+ MCP -.->|Exposes| FILE
107
+ MCP -.->|Exposes| CONTEXT
108
+ MCP -.->|Exposes| PROPS
109
+ MCP -.->|Exposes| CREATE
110
+ MCP -.->|Exposes| PROJECT
111
+
112
+ classDef aiStyle fill:#1e40af,stroke:#3b82f6,stroke-width:2px,color:#ffffff
113
+ classDef mcpStyle fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:#ffffff
114
+ classDef httpStyle fill:#ea580c,stroke:#f97316,stroke-width:2px,color:#ffffff
115
+ classDef pluginStyle fill:#059669,stroke:#10b981,stroke-width:2px,color:#ffffff
116
+ classDef studioStyle fill:#dc2626,stroke:#ef4444,stroke-width:2px,color:#ffffff
117
+ classDef toolStyle fill:#0891b2,stroke:#06b6d4,stroke-width:2px,color:#ffffff
118
+
119
+ class AI aiStyle
120
+ class MCP mcpStyle
121
+ class HTTP,QUEUE httpStyle
122
+ class PLUGIN pluginStyle
123
+ class STUDIO studioStyle
124
+ class FILE,CONTEXT,PROPS,CREATE,PROJECT toolStyle
125
+ ```
126
+
127
+ ### Key Components:
128
+ - MCP Server (Node.js/TypeScript) - Exposes 18 tools via stdio
129
+ - HTTP Bridge - Request/response queue on localhost:3002
130
+ - Studio Plugin (Luau) - Polls server and executes API calls
131
+ - Smart Caching - Efficient data transfer
132
+
133
+ ## 18 AI Tools
134
+
135
+ ### File System Tools
136
+ - `get_file_tree` - Complete project hierarchy with scripts, models, folders
137
+ - `search_files` - Find files by name, type, or content patterns
138
+
139
+ ### Studio Context Tools
140
+ - `get_place_info` - Place ID, name, game settings, workspace info
141
+ - `get_services` - All Roblox services and their child counts
142
+ - `search_objects` - Find instances by name, class, or properties
143
+
144
+ ### Instance & Property Tools
145
+ - `get_instance_properties` - Complete property dump for any object
146
+ - `get_instance_children` - Child objects with metadata
147
+ - `search_by_property` - Find objects with specific property values
148
+ - `get_class_info` - Available properties/methods for Roblox classes
149
+
150
+ ### Property Modification Tools
151
+ - `set_property` - Set a property on any Roblox instance
152
+ - `mass_set_property` - Set the same property on multiple instances
153
+ - `mass_get_property` - Get the same property from multiple instances
154
+
155
+ ### Object Creation Tools
156
+ - `create_object` - Create a new Roblox object instance
157
+ - `create_object_with_properties` - Create objects with initial properties
158
+ - `mass_create_objects` - Create multiple objects at once
159
+ - `mass_create_objects_with_properties` - Create multiple objects with properties
160
+ - `delete_object` - Delete a Roblox object instance
161
+
162
+ ### Project Analysis Tools
163
+ - `get_project_structure` - Smart hierarchy with depth control (recommended: 5-10)
164
+
165
+ > Note: Previous tools removed: `get_file_content`, `get_file_properties`, `get_selection`, `get_dependencies`, `validate_references`. Use Rojo/Argon workflows instead.
166
+
167
+ ## AI-Optimized Features
168
+
169
+ ### Mass Operations (v1.3.0)
170
+ - Bulk property editing
171
+ - Mass object creation
172
+ - Batch property reading
173
+ - Atomic undo/redo operations
174
+
175
+ ```typescript
176
+ // Example: Set multiple parts to red
177
+ mass_set_property(["game.Workspace.Part1", "game.Workspace.Part2"], "BrickColor", "Really red")
178
+ ```
179
+
180
+ ### Smart Project Structure
181
+ - Service overview with child counts
182
+ - Path-based exploration: `get_project_structure("game.ServerStorage", maxDepth=5)`
183
+ - Script-only filtering for code analysis
184
+ - Intelligent grouping for large folders
185
+ - Recommended maxDepth=5-10
186
+
187
+ ### Rich Metadata
188
+ - Script status tracking
189
+ - GUI intelligence
190
+ - Performance optimized
191
+
192
+ ## Development & Testing
193
+
194
+ ### Commands
195
+ ```bash
196
+ npm run dev # Development server with hot reload
197
+ npm run build # Production build
198
+ npm start # Run built server
199
+ npm run lint # ESLint code quality
200
+ npm run typecheck # TypeScript validation
201
+ ```
202
+
203
+ ### Plugin Development
204
+ - Live reload
205
+ - Robust error handling
206
+ - Debug logging
207
+ - Visual status indicators
208
+
209
+ ## Communication Protocol
210
+
211
+ ```mermaid
212
+ %%{init: {'theme':'dark', 'themeVariables': {'primaryColor':'#2d3748', 'primaryTextColor':'#ffffff', 'primaryBorderColor':'#4a5568', 'lineColor':'#10b981', 'sectionBkgColor':'#1a202c', 'altSectionBkgColor':'#2d3748', 'gridColor':'#4a5568', 'secondaryColor':'#3b82f6', 'tertiaryColor':'#8b5cf6', 'background':'#1a202c', 'mainBkg':'#2d3748', 'secondBkg':'#374151', 'tertiaryColor':'#6366f1'}}}%%
213
+ sequenceDiagram
214
+ participant AI as AI Assistant
215
+ participant MCP as MCP Server
216
+ participant HTTP as HTTP Bridge
217
+ participant PLUGIN as Studio Plugin
218
+ participant STUDIO as Roblox Studio
219
+
220
+ Note over AI,STUDIO: Tool Request Flow
221
+
222
+ AI->>+MCP: Call tool (e.g., get_file_tree)
223
+ MCP->>+HTTP: Queue request with UUID
224
+ HTTP->>HTTP: Store in pending requests map
225
+ HTTP-->>-MCP: Request queued
226
+
227
+ Note over PLUGIN: Polling every 500ms
228
+ PLUGIN->>+HTTP: GET /poll
229
+ HTTP->>-PLUGIN: Return pending request + UUID
230
+
231
+ PLUGIN->>+STUDIO: Execute Studio APIs
232
+ Note over STUDIO: game.ServerStorage<br/>Selection:Get()<br/>Instance properties
233
+ STUDIO->>-PLUGIN: Return Studio data
234
+
235
+ PLUGIN->>+HTTP: POST /response with UUID + data
236
+ HTTP->>-MCP: Resolve promise with data
237
+ MCP->>-AI: Return tool result
238
+
239
+ Note over AI,STUDIO: Error Handling
240
+
241
+ alt Request Timeout (30s)
242
+ HTTP->>MCP: Reject promise with timeout
243
+ MCP->>AI: Return error message
244
+ end
245
+
246
+ alt Plugin Disconnected
247
+ PLUGIN->>HTTP: Connection lost
248
+ HTTP->>HTTP: Exponential backoff retry
249
+ Note over PLUGIN: Status: "Waiting for server..."
250
+ end
251
+ ```
252
+
253
+ **Features:**
254
+ - 30-second timeouts with exponential backoff
255
+ - Automatic retries
256
+ - Response limiting
257
+ - Request deduplication
258
+
259
+ ## Example Usage
260
+
261
+ ```javascript
262
+ // Get service overview
263
+ get_project_structure()
264
+
265
+ // Explore weapons folder
266
+ get_project_structure("game.ServerStorage.Weapons", maxDepth=2)
267
+
268
+ // Find all Sound objects
269
+ search_by_property("ClassName", "Sound")
270
+
271
+ // Check script dependencies
272
+ get_dependencies("game.ServerScriptService.MainScript")
273
+
274
+ // Find broken references
275
+ validate_references()
276
+
277
+ // Get UI component details
278
+ get_instance_properties("game.StarterGui.MainMenu.SettingsFrame")
279
+ ```
280
+
281
+ ## Configuration
282
+
283
+ **Environment Variables:**
284
+ - `MCP_SERVER_PORT` - MCP server port (default: stdio)
285
+ - `HTTP_SERVER_PORT` - HTTP bridge port (default: 3002)
286
+ - `PLUGIN_POLL_INTERVAL` - Plugin poll frequency (default: 500ms)
287
+ - `REQUEST_TIMEOUT` - Request timeout (default: 30000ms)
288
+
289
+ **Studio Settings:**
290
+ - **Allow HTTP Requests** (Game Settings > Security)
291
+ - **HttpService.HttpEnabled = true**
292
+ - **Plugin activated** via toolbar button
293
+
294
+ ## License
295
+
280
296
  MIT License - Feel free to use in commercial and personal projects!