@weppy/roblox-mcp 0.1.11 → 1.0.1

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 (38) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/CHANGELOG.md +53 -10
  3. package/README.md +47 -17
  4. package/docs/en/installation/roblox-plugin.md +10 -5
  5. package/docs/en/pro-upgrade.md +36 -30
  6. package/docs/en/tools/overview.md +255 -95
  7. package/docs/es/README.md +64 -21
  8. package/docs/es/installation/README.md +6 -5
  9. package/docs/es/installation/roblox-plugin.md +29 -24
  10. package/docs/es/pro-upgrade.md +39 -33
  11. package/docs/es/tools/overview.md +4 -0
  12. package/docs/id/README.md +46 -16
  13. package/docs/id/installation/roblox-plugin.md +28 -23
  14. package/docs/id/pro-upgrade.md +36 -30
  15. package/docs/id/tools/overview.md +4 -0
  16. package/docs/ja/README.md +47 -17
  17. package/docs/ja/installation/README.md +5 -5
  18. package/docs/ja/installation/roblox-plugin.md +32 -27
  19. package/docs/ja/pro-upgrade.md +38 -32
  20. package/docs/ja/tools/overview.md +4 -0
  21. package/docs/ko/README.md +47 -17
  22. package/docs/ko/installation/roblox-plugin.md +10 -5
  23. package/docs/ko/pro-upgrade.md +36 -30
  24. package/docs/ko/tools/overview.md +255 -95
  25. package/docs/pt-br/README.md +47 -17
  26. package/docs/pt-br/installation/roblox-plugin.md +28 -23
  27. package/docs/pt-br/pro-upgrade.md +39 -33
  28. package/docs/pt-br/tools/overview.md +4 -0
  29. package/package.json +4 -2
  30. package/plugins/weppy-roblox-mcp/.claude-plugin/plugin.json +1 -1
  31. package/plugins/weppy-roblox-mcp/dist/index.js +70 -98
  32. package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/SKILL.md +0 -155
  33. package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/references/animations.json +0 -34
  34. package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/references/mcp-tools.md +0 -220
  35. package/plugins/weppy-roblox-mcp/skills/roblox-sync/SKILL.md +0 -492
  36. package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/post-verify.sh +0 -162
  37. package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/pre-check.sh +0 -307
  38. 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.11"
9
+ "version": "1.0.1"
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.11",
16
+ "version": "1.0.1",
17
17
  "author": {
18
18
  "name": "hope1026"
19
19
  },
package/CHANGELOG.md CHANGED
@@ -5,6 +5,49 @@ All notable changes to this project will be documented in this file.
5
5
 
6
6
 
7
7
 
8
+
9
+ ## [1.0.1] - 2026-02-23
10
+
11
+ ### Other Changes
12
+
13
+ - refactor: standardize data directory path logic across modules
14
+
15
+
16
+ ## [1.0.0] - 2026-02-23
17
+
18
+ ### Sync
19
+
20
+ - Implement bidirectional sync between Studio and local files
21
+ - Add per-type sync direction control for Scripts, Values, Containers, Data, and Services
22
+ - Add per-type apply mode (Auto / Manual) per category
23
+ - Add Full Sync and Resync with local file preservation option
24
+ - Add real-time sync progress tracking and place promotion support
25
+ - Add change history with per-change detail view
26
+ - Add multi-place sync with LRU cache (max 3 places) and isolated storage per place
27
+ - Add reverse rescan to detect missed changes on direction switch
28
+ - Add SyncDirectionCard UI with inline descriptions and hover previews
29
+ - Add PreSyncDialog for pre-sync confirmation and local file handling
30
+ - Refactor sync state management with runtime and default config handling
31
+
32
+ ### MCP Tools
33
+
34
+ - Add `batch_execute` tool for running multiple commands in one call
35
+ - Add `execute_luau` sandbox with stricter service and path blocking
36
+ - Add tree mutation support for instance rename and move operations
37
+ - Add sibling index support for duplicate-named instances
38
+ - Add per-type sync direction and apply mode to `manage_sync` tool
39
+ - Add `trackToolCall` with action and error type tracking
40
+ - Improve path resolution with robust Roblox path utilities and root confinement
41
+
42
+ ### Stability
43
+
44
+ - Add comprehensive MCP flow tests and E2E sync test suite
45
+ - Enhance dynamic endpoint handling, reconnection logic, and error resilience
46
+ - Fix tooltip positioning in widget-local space
47
+ - Refactor settings UI with categories and tooltips
48
+ - Improve AI client detection and connection info display
49
+
50
+
8
51
  ## [0.1.11] - 2026-02-14
9
52
 
10
53
  ### Other Changes
@@ -23,21 +66,21 @@ All notable changes to this project will be documented in this file.
23
66
 
24
67
  ### Other Changes
25
68
 
26
- - update test
27
- - refactor: improve stability
69
+ - Improve stability
28
70
 
29
71
 
30
72
  ## [0.1.8] - 2026-02-08
31
73
 
32
74
  ### Fix
33
- - improve stability
75
+ - Improve stability
34
76
 
35
77
 
36
78
  ## [0.1.3] - 2026-02-07
37
79
 
38
80
  ### Features
39
- - add tool history and statistics tracking system
40
- - add version info display in plugin UI
81
+ - Add tool history and statistics tracking system
82
+ - Add version info display in plugin UI
83
+
41
84
 
42
85
  ## [0.1.2] - 2026-02-03
43
86
 
@@ -48,9 +91,8 @@ All notable changes to this project will be documented in this file.
48
91
 
49
92
  First public release of Roblox MCP - AI-powered Roblox Studio integration.
50
93
 
51
- #### 140 Tools Available
94
+ #### Basic
52
95
 
53
- **Basic (68 tools)**
54
96
  - Create, delete, clone, and move parts and models
55
97
  - Write and edit scripts with AI assistance
56
98
  - Change properties like color, size, and position
@@ -59,7 +101,8 @@ First public release of Roblox MCP - AI-powered Roblox Studio integration.
59
101
  - Control camera view and focus
60
102
  - View output logs and debug errors
61
103
 
62
- **Pro (72 tools)**
104
+ #### Pro
105
+
63
106
  - Bulk operations - create or modify hundreds of objects at once
64
107
  - Search and insert models from Creator Store
65
108
  - Environment controls - lighting, weather, time of day
@@ -70,8 +113,8 @@ First public release of Roblox MCP - AI-powered Roblox Studio integration.
70
113
  #### Highlights
71
114
 
72
115
  - **Real-time Studio control** - AI commands execute instantly in Roblox Studio
73
- - **Works with popular AI apps** - Claude, Cursor, Codex CLI, Gemini CLI, and more
116
+ - **Works with popular AI apps** - Claude, Codex CLI, Gemini CLI, and more
74
117
  - **Secure by design** - Localhost only, no external network access
75
- - **Basic tier included** - 68 essential tools free forever
118
+ - **Basic tier included** - Essential tools, free forever
76
119
 
77
120
  [0.1.0]: https://github.com/hope1026/roblox-mcp/releases/tag/v0.1.0
package/README.md CHANGED
@@ -8,41 +8,65 @@
8
8
 
9
9
  ## What You Can Do
10
10
 
11
- ### Create Complete Games
11
+ ### From One Idea to a Playable Game
12
12
 
13
- Just ask "Make a Minecraft-style survival game" or "Create an escape room puzzle game", and AI will design the game structure, build the map, create objects, and write scripts for you. Turn a simple idea into a playable game.
13
+ "Make a Minecraft-style survival game with day/night, crafting, and wave defense." — One sentence and AI designs the game structure, builds the map, creates objects, and writes every script.
14
14
 
15
15
  > **Tip**: Ask "Make a plan first", review it, then say "Execute it" for better results.
16
16
 
17
- ### Create and Place Objects
17
+ ### An AI That Has Read Your Entire Project
18
18
 
19
- Say "Make a red brick house" or "Plant 10 trees in a row" and AI creates them directly in Roblox Studio. Create one object or hundreds at once.
19
+ AI syncs your Roblox project to local files, learning every script, object, and structure. Dozens of files understood at once, changed consistently.
20
20
 
21
- ### Write and Modify Scripts
21
+ - "Find every place that uses RemoteEvents and map out the call flow."
22
+ - "Refactor all enemy AI scripts to use a unified state machine."
23
+ - "Summarize only the risky changes made since yesterday."
22
24
 
23
- Ask "Make particles appear when players jump" or "Find the bug in this script" and AI writes and fixes code for you. It analyzes existing scripts and understands dependencies too.
25
+ Manage multiple Places simultaneously. Track the full history of changes.
24
26
 
25
- ### Set Scene Atmosphere
27
+ ### Scripts: Write, Refactor, Debug — Across Related Files
26
28
 
27
- Just say "Change to sunset vibes" or "Make it dark like a rainy day" and AI automatically adjusts lighting, sky, and fog.
29
+ Not just the file you point at. AI handles the whole dependency chain.
28
30
 
29
- ### Generate Terrain
31
+ - "When the player jumps, add particles, a sound, and a cooldown."
32
+ - "Find all event connections that could leak memory and fix them safely."
33
+ - "Change this module's interface and update every script that references it."
30
34
 
31
- Create natural landscapes like mountains, rivers, plains, and caves through conversation. Customize materials, colors, and sizes freely.
35
+ ### Build and Place Objects Hundreds at Once
32
36
 
33
- ### Search and Insert Assets
37
+ "Line up 50 street lights along this road", "Place 20 brick houses across the district with random rotations" — AI creates them directly in Studio. Batch-update properties across any number of objects with a single command.
34
38
 
35
- Search the Creator Store for free models and assets, then add them to your game instantly. Just say "Find a medieval castle model and insert it".
39
+ ### Lighting, Weather, and Atmosphere in One Sentence
36
40
 
37
- ### Spatial Analysis and Placement
41
+ "Change to a dusty desert at sunset", "Make it a stormy night where lightning briefly illuminates the area" — one sentence and lighting, sky, atmosphere, and fog all update at once.
38
42
 
39
- AI handles spatial tasks like "Find empty space in this area" or "Analyze where monsters can walk".
43
+ ### Sculpt Terrain Through Conversation
40
44
 
41
- ### Debugging and Analysis
45
+ "Mountains in the north, a river through the center, open plains in the south" — generate any landscape through conversation. Control material, color, height, and smoothing. Build entire maps without touching the terrain editor.
42
46
 
43
- Check game error logs, find problems, and fix them together with AI.
47
+ ### Search Creator Store and Place Instantly
44
48
 
45
- > [View all features](docs/en/tools/overview.md)
49
+ "Find a medieval castle model, place it at the map center, and scale it up 1.5x" — search free assets and insert them directly into your project.
50
+
51
+ ### Spatial Intelligence for Level Design
52
+
53
+ "Find open space for a new boss arena", "Show only the areas where monsters can actually patrol" — AI handles complex spatial reasoning and placement logic.
54
+
55
+ ### Animations, Physics, and Audio as Connected Systems
56
+
57
+ - "While the dash animation plays, change the player-enemy collision rules."
58
+ - "Fade in the boss BGM when the ultimate activates, and smoothly return when it ends."
59
+
60
+ Characters, collision, and sound working together as a game system, not separate tools.
61
+
62
+ ### Run Any Roblox Code Directly
63
+
64
+ When built-in tools aren't enough, AI executes arbitrary Luau in Studio.
65
+
66
+ - "Find every Part in the Workspace with Anchored=false and list them."
67
+ - "Batch-update matching objects and log every change."
68
+
69
+ > [View all tools](docs/en/tools/overview.md)
46
70
 
47
71
  ## Getting Started
48
72
 
@@ -53,6 +77,12 @@ Installation is complete in two steps:
53
77
 
54
78
  Takes just 5 minutes. 👉 [View Installation Guide](docs/en/installation/README.md)
55
79
 
80
+ ## Pro Upgrade
81
+
82
+ Bidirectional Sync, advanced build capabilities, and AI token efficiency — all in one upgrade.
83
+
84
+ 👉 [Pro Upgrade Guide](docs/en/pro-upgrade.md)
85
+
56
86
  ## Links
57
87
 
58
88
  - [GitHub](https://github.com/hope1026/roblox-mcp)
@@ -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 |