@weppy/roblox-mcp 0.1.10 → 1.0.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.
Files changed (44) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/CHANGELOG.md +52 -10
  3. package/README.md +6 -0
  4. package/docs/en/installation/ai-apps/gemini-cli.md +24 -31
  5. package/docs/en/installation/roblox-plugin.md +10 -5
  6. package/docs/en/pro-upgrade.md +36 -30
  7. package/docs/en/tools/overview.md +255 -95
  8. package/docs/es/README.md +6 -0
  9. package/docs/es/installation/README.md +6 -5
  10. package/docs/es/installation/ai-apps/gemini-cli.md +51 -58
  11. package/docs/es/installation/roblox-plugin.md +29 -24
  12. package/docs/es/pro-upgrade.md +39 -33
  13. package/docs/es/tools/overview.md +4 -0
  14. package/docs/id/README.md +6 -0
  15. package/docs/id/installation/ai-apps/gemini-cli.md +42 -49
  16. package/docs/id/installation/roblox-plugin.md +28 -23
  17. package/docs/id/pro-upgrade.md +36 -30
  18. package/docs/id/tools/overview.md +4 -0
  19. package/docs/ja/README.md +6 -0
  20. package/docs/ja/installation/README.md +5 -5
  21. package/docs/ja/installation/ai-apps/gemini-cli.md +39 -46
  22. package/docs/ja/installation/roblox-plugin.md +32 -27
  23. package/docs/ja/pro-upgrade.md +38 -32
  24. package/docs/ja/tools/overview.md +4 -0
  25. package/docs/ko/README.md +6 -0
  26. package/docs/ko/installation/ai-apps/gemini-cli.md +24 -31
  27. package/docs/ko/installation/roblox-plugin.md +10 -5
  28. package/docs/ko/pro-upgrade.md +36 -30
  29. package/docs/ko/tools/overview.md +255 -95
  30. package/docs/pt-br/README.md +6 -0
  31. package/docs/pt-br/installation/ai-apps/gemini-cli.md +47 -54
  32. package/docs/pt-br/installation/roblox-plugin.md +28 -23
  33. package/docs/pt-br/pro-upgrade.md +39 -33
  34. package/docs/pt-br/tools/overview.md +4 -0
  35. package/package.json +4 -2
  36. package/plugins/weppy-roblox-mcp/.claude-plugin/plugin.json +1 -1
  37. package/plugins/weppy-roblox-mcp/dist/index.js +70 -98
  38. package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/SKILL.md +0 -155
  39. package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/references/animations.json +0 -34
  40. package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/references/mcp-tools.md +0 -220
  41. package/plugins/weppy-roblox-mcp/skills/roblox-sync/SKILL.md +0 -492
  42. package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/post-verify.sh +0 -162
  43. package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/pre-check.sh +0 -307
  44. package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/update-metadata.sh +0 -27
@@ -6,14 +6,14 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Roblox MCP server and tools for AI-powered game development",
9
- "version": "0.1.10"
9
+ "version": "1.0.0"
10
10
  },
11
11
  "plugins": [
12
12
  {
13
13
  "name": "weppy-roblox-mcp",
14
14
  "source": "./plugins/weppy-roblox-mcp",
15
15
  "description": "MCP server for Roblox Studio integration - 132 tools for AI-powered game development with specialized agents and skills",
16
- "version": "0.1.10",
16
+ "version": "1.0.0",
17
17
  "author": {
18
18
  "name": "hope1026"
19
19
  },
package/CHANGELOG.md CHANGED
@@ -5,6 +5,48 @@ All notable changes to this project will be documented in this file.
5
5
 
6
6
 
7
7
 
8
+ ## [1.0.0] - 2026-02-23
9
+
10
+ ### Sync
11
+
12
+ - Implement bidirectional sync between Studio and local files
13
+ - Add per-type sync direction control for Scripts, Values, Containers, Data, and Services
14
+ - Add per-type apply mode (Auto / Manual) per category
15
+ - Add Full Sync and Resync with local file preservation option
16
+ - Add real-time sync progress tracking and place promotion support
17
+ - Add change history with per-change detail view
18
+ - Add multi-place sync with LRU cache (max 3 places) and isolated storage per place
19
+ - Add reverse rescan to detect missed changes on direction switch
20
+ - Add SyncDirectionCard UI with inline descriptions and hover previews
21
+ - Add PreSyncDialog for pre-sync confirmation and local file handling
22
+ - Refactor sync state management with runtime and default config handling
23
+
24
+ ### MCP Tools
25
+
26
+ - Add `batch_execute` tool for running multiple commands in one call
27
+ - Add `execute_luau` sandbox with stricter service and path blocking
28
+ - Add tree mutation support for instance rename and move operations
29
+ - Add sibling index support for duplicate-named instances
30
+ - Add per-type sync direction and apply mode to `manage_sync` tool
31
+ - Add `trackToolCall` with action and error type tracking
32
+ - Improve path resolution with robust Roblox path utilities and root confinement
33
+
34
+ ### Stability
35
+
36
+ - Add comprehensive MCP flow tests and E2E sync test suite
37
+ - Enhance dynamic endpoint handling, reconnection logic, and error resilience
38
+ - Fix tooltip positioning in widget-local space
39
+ - Refactor settings UI with categories and tooltips
40
+ - Improve AI client detection and connection info display
41
+
42
+
43
+ ## [0.1.11] - 2026-02-14
44
+
45
+ ### Other Changes
46
+
47
+ - Improve stability
48
+
49
+
8
50
  ## [0.1.10] - 2026-02-11
9
51
 
10
52
  ### Bug Fixes
@@ -16,21 +58,21 @@ All notable changes to this project will be documented in this file.
16
58
 
17
59
  ### Other Changes
18
60
 
19
- - update test
20
- - refactor: improve stability
61
+ - Improve stability
21
62
 
22
63
 
23
64
  ## [0.1.8] - 2026-02-08
24
65
 
25
66
  ### Fix
26
- - improve stability
67
+ - Improve stability
27
68
 
28
69
 
29
70
  ## [0.1.3] - 2026-02-07
30
71
 
31
72
  ### Features
32
- - add tool history and statistics tracking system
33
- - add version info display in plugin UI
73
+ - Add tool history and statistics tracking system
74
+ - Add version info display in plugin UI
75
+
34
76
 
35
77
  ## [0.1.2] - 2026-02-03
36
78
 
@@ -41,9 +83,8 @@ All notable changes to this project will be documented in this file.
41
83
 
42
84
  First public release of Roblox MCP - AI-powered Roblox Studio integration.
43
85
 
44
- #### 140 Tools Available
86
+ #### Basic
45
87
 
46
- **Basic (68 tools)**
47
88
  - Create, delete, clone, and move parts and models
48
89
  - Write and edit scripts with AI assistance
49
90
  - Change properties like color, size, and position
@@ -52,7 +93,8 @@ First public release of Roblox MCP - AI-powered Roblox Studio integration.
52
93
  - Control camera view and focus
53
94
  - View output logs and debug errors
54
95
 
55
- **Pro (72 tools)**
96
+ #### Pro
97
+
56
98
  - Bulk operations - create or modify hundreds of objects at once
57
99
  - Search and insert models from Creator Store
58
100
  - Environment controls - lighting, weather, time of day
@@ -63,8 +105,8 @@ First public release of Roblox MCP - AI-powered Roblox Studio integration.
63
105
  #### Highlights
64
106
 
65
107
  - **Real-time Studio control** - AI commands execute instantly in Roblox Studio
66
- - **Works with popular AI apps** - Claude, Cursor, Codex CLI, Gemini CLI, and more
108
+ - **Works with popular AI apps** - Claude, Codex CLI, Gemini CLI, and more
67
109
  - **Secure by design** - Localhost only, no external network access
68
- - **Basic tier included** - 68 essential tools free forever
110
+ - **Basic tier included** - Essential tools, free forever
69
111
 
70
112
  [0.1.0]: https://github.com/hope1026/roblox-mcp/releases/tag/v0.1.0
package/README.md CHANGED
@@ -53,6 +53,12 @@ Installation is complete in two steps:
53
53
 
54
54
  Takes just 5 minutes. 👉 [View Installation Guide](docs/en/installation/README.md)
55
55
 
56
+ ## Go Pro
57
+
58
+ Build without limits. Bidirectional Sync, advanced build capabilities, and AI token efficiency — all in one upgrade.
59
+
60
+ 👉 [Pro Upgrade Guide](docs/en/pro-upgrade.md)
61
+
56
62
  ## Links
57
63
 
58
64
  - [GitHub](https://github.com/hope1026/roblox-mcp)
@@ -18,7 +18,23 @@ How to use Roblox MCP with [Google Gemini CLI](https://github.com/google-gemini/
18
18
 
19
19
  ## Register MCP Server
20
20
 
21
- ### Method 1: Edit Configuration File (Recommended)
21
+ ### Method 1: CLI Command (Recommended)
22
+
23
+ Register with a single command in your terminal:
24
+
25
+ ```bash
26
+ gemini mcp add weppy-roblox-mcp npx --trust -- -y @weppy/roblox-mcp
27
+ ```
28
+
29
+ > The `--trust` flag skips confirmation prompts for each tool call.
30
+
31
+ To register globally, add `-s user`:
32
+
33
+ ```bash
34
+ gemini mcp add weppy-roblox-mcp npx -s user --trust -- -y @weppy/roblox-mcp
35
+ ```
36
+
37
+ ### Method 2: Edit Configuration File
22
38
 
23
39
  Add the following content to `.gemini/settings.json`:
24
40
 
@@ -39,10 +55,16 @@ Add the following content to `.gemini/settings.json`:
39
55
  | Project | `<project>/.gemini/settings.json` |
40
56
  | Global | `~/.gemini/settings.json` |
41
57
 
42
- ### Method 2: Using Environment Variables
58
+ ### Method 3: Using Environment Variables
43
59
 
44
60
  If specific environment variables are needed:
45
61
 
62
+ **CLI:**
63
+ ```bash
64
+ gemini mcp add weppy-roblox-mcp npx --trust -e MCP_PORT=3002 -- -y @weppy/roblox-mcp
65
+ ```
66
+
67
+ **Configuration file:**
46
68
  ```json
47
69
  {
48
70
  "mcpServers": {
@@ -73,35 +95,6 @@ You can check connected server status with the `/mcp` command in Gemini CLI:
73
95
  /mcp
74
96
  ```
75
97
 
76
- ## Advanced Configuration
77
-
78
- ### Tool Filtering
79
-
80
- You can include or exclude specific tools:
81
-
82
- ```json
83
- {
84
- "mcpServers": {
85
- "weppy-roblox-mcp": {
86
- "command": "npx",
87
- "args": ["-y", "@weppy/roblox-mcp"],
88
- "excludeTools": ["execute_script"],
89
- "includeTools": ["get_selection", "create_instance", "set_property"]
90
- }
91
- }
92
- }
93
- ```
94
-
95
- > `excludeTools` takes precedence over `includeTools`.
96
-
97
- ### Debug Mode
98
-
99
- To debug connection issues:
100
-
101
- ```bash
102
- gemini --debug
103
- ```
104
-
105
98
  ## Troubleshooting
106
99
 
107
100
  ### Server won't start
@@ -4,8 +4,13 @@ How to install the plugin to connect AI agents with Roblox Studio.
4
4
 
5
5
  ## 1. Download Plugin
6
6
 
7
- 1. Download `weppy-roblox-mcp-basic-v{version}.zip` from [GitHub Releases](https://github.com/hope1026/roblox-mcp/releases/latest)
8
- 2. Extract the ZIP file — you'll find the `roblox-plugin/WeppyRobloxMCP.rbxm` file and setup guides inside
7
+ 1. Open [GitHub Releases](https://github.com/hope1026/roblox-mcp/releases/latest)
8
+ 2. Download `weppy-roblox-mcp-v{version}.zip`
9
+ 3. Extract the ZIP file - you will find `roblox-plugin/WeppyRobloxMCP.rbxm` and setup guides
10
+
11
+ Note:
12
+ - Basic users install the same plugin package and use Basic policy (Studio -> Local one-way sync)
13
+ - Pro subscribers unlock bidirectional sync and broader advanced tools after license activation
9
14
 
10
15
  ## 2. Install Plugin
11
16
 
@@ -42,15 +47,15 @@ The MCP server must be installed. Complete the guide for your AI app first:
42
47
  ### Connecting
43
48
 
44
49
  1. Open any project in **Roblox Studio**
45
- 2. Go to **Plugins** tab **W-MCP**
50
+ 2. Go to **Plugins** tab -> **W-MCP**
46
51
  3. Click the **Connect** button in the plugin window
47
- 4. Once **"Connected"** status is displayed, you're ready!
52
+ 4. Once **"Connected"** status is displayed, you're ready
48
53
 
49
54
  ![Plugin Main Screen](../../assets/screenshots/plugin_main.png)
50
55
 
51
56
  ## 5. Settings (Optional)
52
57
 
53
- Click the settings button in the top right of the plugin to change various options.
58
+ Click the settings button in the top right of the plugin to change options.
54
59
 
55
60
  ![Settings Screen](../../assets/screenshots/settings.png)
56
61
 
@@ -2,50 +2,56 @@
2
2
 
3
3
  ## Why Pro?
4
4
 
5
- **Save AI Tokens** - One bulk command replaces dozens of individual operations. Less back-and-forth means lower token usage and faster results.
5
+ ### Bidirectional Sync built for real development workflows
6
6
 
7
- **Build Complete Games** - Terrain, environment, assets, and spatial tools let you create polished game worlds, not just prototypes.
7
+ Pro Sync goes beyond one-way export. Edit scripts locally and push them to Studio. Make changes in Studio and pull them back to disk. Pro keeps both sides in sync.
8
8
 
9
- ## What Pro Unlocks
9
+ - **Bidirectional Sync** — Changes flow in both directions between Studio and local files.
10
+ - **Per-type Direction** — Set direction independently for Scripts, Values, Containers, Data, and Services.
11
+ - **Per-type Apply Mode** — Choose Auto or Manual per type to balance speed and control.
12
+ - **Full Sync / Resync** — Rebuild clean project state on demand after large changes or reconnects.
13
+ - **Change History** — Track what changed, when, and in which direction before applying.
14
+ - **Multi-place Sync** — Sync up to 3 Roblox Places simultaneously, each with isolated storage and its own change history.
10
15
 
11
- | Category | What you can do |
12
- |----------|-----------------|
13
- | **Bulk Operations** | Create 100 trees with one command. Modify all parts at once. |
14
- | **Terrain Generation** | Generate mountains, caves, and landscapes procedurally. |
15
- | **Asset Management** | Search Creator Store and insert models directly. |
16
- | **Raycast & Spatial** | Find spawn positions, detect collisions, analyze walkable areas. |
17
- | **Environment Control** | Set lighting, atmosphere, sky, and time of day. |
18
- | **Visualization** | Show areas, create markers, highlight regions. |
16
+ ### Save AI tokens with high-leverage workflows
19
17
 
20
- ## How to Purchase
18
+ Bulk and advanced actions reduce repetitive round trips — do more per prompt.
21
19
 
22
- ### Step 1: Buy on Gumroad
20
+ ### Broader advanced capabilities
23
21
 
24
- 1. Go to [Gumroad - Weppy Roblox Plugin](https://gumroad.com/l/chllph?utm_source=github&utm_medium=repo&utm_campaign=sunity_plugin)
25
- 2. Download the plugin
22
+ Terrain generation, asset search, spatial analysis, animation, audio, and production-scale automation.
26
23
 
27
- ### Step 2: Install Plugin
24
+ ## Subscription & Download
28
25
 
29
- 1. Open Roblox Studio
30
- 2. Go to Plugins tab → **Plugins Folder**
31
- 3. **Delete** the existing `WeppyRobloxMCP.rbxm` (Basic version)
32
- 4. **Copy** the downloaded `WeppyRobloxMCP-Pro.rbxm` into the folder
33
- 5. Restart Roblox Studio
26
+ ### Step 1: Subscribe on Gumroad
27
+
28
+ 1. Go to [Gumroad - Weppy Roblox Plugin](https://gumroad.com/l/faccjs?utm_source=github&utm_medium=repo&utm_campaign=pro_upgrade_md)
29
+ 2. Complete your Pro subscription license purchase
30
+
31
+ ### Step 2: Download from GitHub Releases
32
+
33
+ 1. Open [GitHub Releases](https://github.com/hope1026/roblox-mcp/releases/latest)
34
+ 2. Download `weppy-roblox-mcp-v{version}.zip`
35
+ 3. Extract and copy `roblox-plugin/WeppyRobloxMCP.rbxm` to your Roblox Plugins folder
34
36
 
35
37
  ### Step 3: Verify
36
38
 
37
- 1. Open the W-MCP plugin
38
- 2. Check that "Pro" badge is displayed
39
- 3. All tools are now available!
39
+ 1. Open W-MCP in Roblox Studio
40
+ 2. Confirm the Pro badge is visible
41
+ 3. Run a Pro action (for example: `manage_sync` or bulk operations)
40
42
 
41
43
  ## Feature Comparison
42
44
 
43
45
  | Feature | Basic | Pro |
44
46
  |---------|:-----:|:---:|
45
- | Instance, Script, Property | ✅ Full access | ✅ Full access |
47
+ | Script, Instance, Property management | ✅ Full access | ✅ Full access |
46
48
  | Selection, Tag, Camera, Log | ✅ Full access | ✅ Full access |
47
- | Bulk Operations | | Unlimited |
48
- | Asset Search & Insert | | ✅ Unlimited |
49
- | Terrain Generation | | ✅ Unlimited |
50
- | Environment, Raycast, Spatial | | ✅ Unlimited |
51
- | Visualization Tools | | ✅ Unlimited |
49
+ | Sync Direction | Studio Local (one-way) | Bidirectional |
50
+ | Per-type Sync Direction | | ✅ Scripts / Values / Containers / Data / Services |
51
+ | Per-type Apply Mode | | ✅ Auto / Manual |
52
+ | Full Sync | | ✅ |
53
+ | Resync / Rebuild state | | ✅ |
54
+ | Change History | ❌ | ✅ |
55
+ | Multi-place Sync | ❌ | ✅ Up to 3 places, each with isolated storage |
56
+ | Advanced tool coverage | Core set | Broader advanced set |
57
+ | AI token efficiency | Standard | Better with bulk / high-leverage actions |