@weppy/roblox-mcp 1.3.0 → 1.4.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 (42) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/.github/ISSUE_TEMPLATE/bug_report.yml +60 -0
  3. package/.github/ISSUE_TEMPLATE/feature_request.yml +30 -0
  4. package/.github/ISSUE_TEMPLATE/install_help.yml +48 -0
  5. package/.github/PULL_REQUEST_TEMPLATE.md +16 -0
  6. package/.github/workflows/deploy-docs.yml +41 -0
  7. package/CHANGELOG.md +45 -0
  8. package/CODE_OF_CONDUCT.md +29 -0
  9. package/CONTRIBUTING.md +36 -0
  10. package/README.md +87 -20
  11. package/SECURITY.md +28 -0
  12. package/SUPPORT.md +27 -0
  13. package/docs/assets/screenshots/roblox-explorer/install-from-vsix.png +3 -0
  14. package/docs/assets/screenshots/roblox-explorer/roblox-explorer-screen.png +3 -0
  15. package/docs/assets/screenshots/sync.png +2 -2
  16. package/docs/compatibility.md +44 -0
  17. package/docs/en/installation/README.md +8 -0
  18. package/docs/en/installation/roblox-explorer.md +68 -0
  19. package/docs/en/sync/overview.md +10 -0
  20. package/docs/es/README.md +49 -20
  21. package/docs/es/installation/README.md +8 -0
  22. package/docs/es/sync/overview.md +10 -0
  23. package/docs/id/README.md +49 -20
  24. package/docs/id/installation/README.md +8 -0
  25. package/docs/id/sync/overview.md +10 -0
  26. package/docs/ja/README.md +51 -22
  27. package/docs/ja/installation/README.md +8 -0
  28. package/docs/ja/sync/overview.md +10 -0
  29. package/docs/ko/README.md +49 -20
  30. package/docs/ko/installation/README.md +8 -0
  31. package/docs/ko/installation/roblox-explorer.md +68 -0
  32. package/docs/ko/sync/overview.md +10 -0
  33. package/docs/pt-br/README.md +49 -20
  34. package/docs/pt-br/installation/README.md +8 -0
  35. package/docs/pt-br/sync/overview.md +10 -0
  36. package/docs/troubleshooting.md +47 -0
  37. package/llms-full.txt +599 -0
  38. package/llms.txt +55 -0
  39. package/package.json +1 -1
  40. package/plugins/weppy-roblox-mcp/.claude-plugin/plugin.json +1 -1
  41. package/plugins/weppy-roblox-mcp/dist/index.js +42 -42
  42. package/smithery.yaml +13 -0
@@ -6,14 +6,14 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Roblox MCP server and tools for AI-powered game development",
9
- "version": "1.3.0"
9
+ "version": "1.4.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 - AI-powered game development with specialized agents and skills",
16
- "version": "1.3.0",
16
+ "version": "1.4.0",
17
17
  "author": {
18
18
  "name": "hope1026"
19
19
  },
@@ -0,0 +1,60 @@
1
+ name: Bug Report
2
+ description: Something isn't working correctly
3
+ labels: ["bug"]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ Before reporting, check [Troubleshooting](https://github.com/hope1026/roblox-mcp/blob/main/docs/en/troubleshooting.md)
9
+ and [Discussions](https://github.com/hope1026/roblox-mcp/discussions).
10
+ - type: input
11
+ id: os
12
+ attributes:
13
+ label: OS
14
+ placeholder: "macOS 14 / Windows 11"
15
+ validations:
16
+ required: true
17
+ - type: input
18
+ id: node
19
+ attributes:
20
+ label: Node.js version
21
+ placeholder: "node --version output"
22
+ validations:
23
+ required: true
24
+ - type: input
25
+ id: ai-client
26
+ attributes:
27
+ label: AI client
28
+ placeholder: "Claude Code 1.x / Cursor 0.4x / Codex CLI"
29
+ validations:
30
+ required: true
31
+ - type: input
32
+ id: plugin-version
33
+ attributes:
34
+ label: Plugin / MCP server version
35
+ placeholder: "v1.3.1"
36
+ validations:
37
+ required: true
38
+ - type: textarea
39
+ id: steps
40
+ attributes:
41
+ label: Steps to reproduce
42
+ validations:
43
+ required: true
44
+ - type: textarea
45
+ id: expected
46
+ attributes:
47
+ label: Expected behavior
48
+ validations:
49
+ required: true
50
+ - type: textarea
51
+ id: actual
52
+ attributes:
53
+ label: Actual behavior
54
+ validations:
55
+ required: true
56
+ - type: textarea
57
+ id: logs
58
+ attributes:
59
+ label: Logs (if any)
60
+ render: shell
@@ -0,0 +1,30 @@
1
+ name: Feature Request
2
+ description: Suggest a new feature or improvement
3
+ labels: ["enhancement"]
4
+ body:
5
+ - type: textarea
6
+ id: problem
7
+ attributes:
8
+ label: What problem does this solve?
9
+ placeholder: "e.g. I can't easily do X with the current tools"
10
+ validations:
11
+ required: true
12
+ - type: textarea
13
+ id: solution
14
+ attributes:
15
+ label: Proposed solution
16
+ validations:
17
+ required: true
18
+ - type: dropdown
19
+ id: tier
20
+ attributes:
21
+ label: Which tier would this apply to?
22
+ options:
23
+ - Basic
24
+ - Pro
25
+ - Both
26
+ - Not sure
27
+ - type: textarea
28
+ id: context
29
+ attributes:
30
+ label: Additional context
@@ -0,0 +1,48 @@
1
+ name: Install Help
2
+ description: Having trouble installing or connecting
3
+ labels: ["question", "installation"]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ **First:** check the [Installation Guide](https://github.com/hope1026/roblox-mcp/blob/main/docs/en/installation/README.md)
9
+ and [Troubleshooting](https://github.com/hope1026/roblox-mcp/blob/main/docs/en/troubleshooting.md).
10
+ For general questions, use [Discussions](https://github.com/hope1026/roblox-mcp/discussions) instead.
11
+ - type: dropdown
12
+ id: ai-client
13
+ attributes:
14
+ label: AI client
15
+ options:
16
+ - Claude Code
17
+ - Claude Desktop
18
+ - Cursor
19
+ - Codex CLI
20
+ - Gemini CLI
21
+ - Other
22
+ validations:
23
+ required: true
24
+ - type: input
25
+ id: os
26
+ attributes:
27
+ label: OS
28
+ placeholder: "macOS 14 / Windows 11"
29
+ validations:
30
+ required: true
31
+ - type: input
32
+ id: node
33
+ attributes:
34
+ label: Node.js version
35
+ placeholder: "node --version output"
36
+ validations:
37
+ required: true
38
+ - type: textarea
39
+ id: issue
40
+ attributes:
41
+ label: What's happening?
42
+ placeholder: "Describe the problem and any error messages"
43
+ validations:
44
+ required: true
45
+ - type: textarea
46
+ id: tried
47
+ attributes:
48
+ label: What have you tried?
@@ -0,0 +1,16 @@
1
+ ## What does this PR do?
2
+
3
+ <!-- Brief description of the change -->
4
+
5
+ ## Type of change
6
+
7
+ - [ ] Documentation improvement
8
+ - [ ] Example prompt or cookbook addition
9
+ - [ ] Bug fix
10
+ - [ ] Other
11
+
12
+ ## Checklist
13
+
14
+ - [ ] I've read [CONTRIBUTING.md](../CONTRIBUTING.md)
15
+ - [ ] Changes are limited to docs or examples (plugin source is not in this repo)
16
+ - [ ] Links and paths are correct
@@ -0,0 +1,41 @@
1
+ name: Deploy docs to GitHub Pages
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - 'docs/**'
8
+ - 'README.md'
9
+ - 'llms.txt'
10
+ workflow_dispatch:
11
+
12
+ permissions:
13
+ contents: read
14
+ pages: write
15
+ id-token: write
16
+
17
+ concurrency:
18
+ group: pages
19
+ cancel-in-progress: false
20
+
21
+ jobs:
22
+ deploy:
23
+ environment:
24
+ name: github-pages
25
+ url: ${{ steps.deployment.outputs.page_url }}
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - name: Checkout
29
+ uses: actions/checkout@v4
30
+
31
+ - name: Setup Pages
32
+ uses: actions/configure-pages@v5
33
+
34
+ - name: Upload artifact
35
+ uses: actions/upload-pages-artifact@v3
36
+ with:
37
+ path: docs
38
+
39
+ - name: Deploy to GitHub Pages
40
+ id: deployment
41
+ uses: actions/deploy-pages@v4
package/CHANGELOG.md CHANGED
@@ -4,6 +4,51 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
 
6
6
 
7
+
8
+
9
+ ## [1.4.0] - 2026-03-08
10
+
11
+ ### New Features
12
+
13
+ - Add Roblox Explorer VSCode extension — browse Studio instance tree directly in VSCode sidebar
14
+ - TreeDataProvider for real-time instance hierarchy visualization
15
+ - Auto-refresh via FileWatcher on sync data changes
16
+ - Icon mapping for Roblox class names (dark/light theme support)
17
+ - Copy instance path, open backing file, reveal in explorer commands
18
+
19
+ ### Improvements
20
+
21
+ - Refactor MCP server deployment pipeline and build configuration
22
+ - Improve camera and terrain sync stability and accuracy
23
+ - Enhance plugin UI icons and visual consistency
24
+
25
+
26
+ ## [1.3.1] - 2026-03-07
27
+
28
+ ### Improvements
29
+
30
+ - Improve sync robustness during rapid consecutive file changes
31
+ - Enhance incremental change processor to reduce false-positive conflict detection
32
+ - Strengthen sync index integrity checks on startup and reconnect
33
+ - Improve LRU cache eviction to prevent stale place data after session switch
34
+
35
+ ### Bug Fixes
36
+
37
+ - Fix sync stall when file watcher emits duplicate events for the same path
38
+ - Fix reverse sync occasionally skipping files with identical hashes but different timestamps
39
+ - Fix collision suffix (`~N`) not reindexing correctly after instance rename
40
+ - Fix sync-init phase hanging when workspace contains deeply nested empty containers
41
+
42
+ ### Documentation
43
+
44
+ - Restructure README for faster install path (Quick Install and compatibility table at top)
45
+ - Add troubleshooting guide
46
+ - Add compatibility matrix (supported clients, system requirements, Basic vs Pro)
47
+ - Add `llms.txt` for AI crawler discovery
48
+ - Add community health files: CONTRIBUTING, CODE_OF_CONDUCT, SECURITY, SUPPORT
49
+ - Add GitHub issue templates (bug report, feature request, install help)
50
+
51
+
7
52
  ## [1.3.0] - 2026-03-06
8
53
 
9
54
  ### Breaking Changes
@@ -0,0 +1,29 @@
1
+ # Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity, level of experience, nationality, personal appearance, race, religion, or sexual identity.
6
+
7
+ ## Our Standards
8
+
9
+ Examples of behavior that contributes to a positive environment:
10
+
11
+ - Using welcoming and inclusive language
12
+ - Being respectful of differing viewpoints and experiences
13
+ - Gracefully accepting constructive criticism
14
+ - Focusing on what is best for the community
15
+ - Showing empathy toward other community members
16
+
17
+ Examples of unacceptable behavior:
18
+
19
+ - Harassment, trolling, or personal attacks
20
+ - Publishing others' private information without permission
21
+ - Other conduct which could reasonably be considered inappropriate
22
+
23
+ ## Enforcement
24
+
25
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting the maintainer via [GitHub Discussions](https://github.com/hope1026/roblox-mcp/discussions). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate.
26
+
27
+ ## Attribution
28
+
29
+ This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/), version 2.1.
@@ -0,0 +1,36 @@
1
+ # Contributing to Roblox MCP
2
+
3
+ ## Bug Reports
4
+
5
+ Use the [Bug Report issue template](https://github.com/hope1026/roblox-mcp/issues/new?template=bug_report.yml).
6
+
7
+ Include:
8
+ - OS and Node.js version (`node --version`)
9
+ - Roblox Studio version
10
+ - AI client and version
11
+ - Steps to reproduce
12
+ - Expected vs actual behavior
13
+ - Error logs if available
14
+
15
+ ## Feature Requests
16
+
17
+ Use the [Feature Request template](https://github.com/hope1026/roblox-mcp/issues/new?template=feature_request.yml).
18
+
19
+ ## Questions & Install Help
20
+
21
+ Use [GitHub Discussions](https://github.com/hope1026/roblox-mcp/discussions) — not Issues — for questions and install help.
22
+
23
+ ## Pull Requests
24
+
25
+ This repository distributes the MCP server and plugin. The plugin source is not included here.
26
+
27
+ PRs for **documentation improvements** and **example prompts** are welcome:
28
+
29
+ 1. Fork the repository
30
+ 2. Create a branch: `git checkout -b docs/your-improvement`
31
+ 3. Make your changes
32
+ 4. Open a Pull Request with a clear description
33
+
34
+ ## Code of Conduct
35
+
36
+ Please read and follow the [Code of Conduct](CODE_OF_CONDUCT.md).
package/README.md CHANGED
@@ -1,27 +1,65 @@
1
1
  # Roblox MCP
2
2
 
3
- **English** | [한국어](docs/ko/README.md) | [日本語](docs/ja/README.md) | [Español](docs/es/README.md) | [Português](docs/pt-br/README.md) | [Bahasa Indonesia](docs/id/README.md)
3
+ > The MCP server that connects AI coding agents to Roblox Studio — control scripts, terrain, assets, lighting, audio, and animations via natural language.
4
4
 
5
- > Tell AI what you want, and it happens in Roblox Studio.
5
+ **English** | [한국어](docs/ko/README.md) | [日本語](docs/ja/README.md) | [Español](docs/es/README.md) | [Português](docs/pt-br/README.md) | [Bahasa Indonesia](docs/id/README.md)
6
6
 
7
7
  [![Demo](https://img.youtube.com/vi/3jrUpBbZPaw/maxresdefault.jpg)](https://youtu.be/3jrUpBbZPaw)
8
8
 
9
- ## Core Capabilities
9
+ ## The Problem
10
+
11
+ AI coding agents like Claude, Codex, and Gemini are powerful — but they cannot see or modify anything inside Roblox Studio. The DataModel, scripts, terrain, and lighting are all invisible to external tools. Without a bridge, AI can only generate code snippets that you must paste manually.
12
+
13
+ ## The Solution
14
+
15
+ Roblox MCP provides a real-time bridge between AI agents and the Roblox Studio DataModel. It exposes the full Roblox API surface as executable MCP tools, so AI can **directly create, read, modify, and delete** instances, scripts, properties, terrain, and more — inside a live Studio session.
16
+
17
+ This is not just code generation. It is **executable, production-oriented actions** running directly in Studio.
18
+
19
+ ## Quick Install (5 minutes)
20
+
21
+ **Step 1** — Install the Roblox Studio plugin (bridge between Studio and AI):
22
+ [Plugin Installation Guide](docs/en/installation/roblox-plugin.md)
23
+
24
+ **Step 2** — Register the MCP server with your AI app:
25
+
26
+ ```bash
27
+ npx -y @weppy/roblox-mcp
28
+ ```
29
+
30
+ | AI App | Guide |
31
+ |--------|-------|
32
+ | Claude Code | [Setup](docs/en/installation/ai-apps/claude-code.md) |
33
+ | Claude Desktop | [Setup](docs/en/installation/ai-apps/claude-app.md) |
34
+ | Codex CLI | [Setup](docs/en/installation/ai-apps/codex-cli.md) |
35
+ | Codex Desktop | [Setup](docs/en/installation/ai-apps/codex-app.md) |
36
+ | Gemini CLI | [Setup](docs/en/installation/ai-apps/gemini-cli.md) |
37
+ | Antigravity | [Setup](docs/en/installation/ai-apps/antigravity.md) |
38
+
39
+ > Any MCP-compatible AI client works. The server command is `npx -y @weppy/roblox-mcp`.
40
+
41
+ ## Compatibility
42
+
43
+ | Claude Code | Claude Desktop | Cursor | Codex CLI | Gemini CLI | Antigravity |
44
+ |:-----------:|:--------------:|:------:|:---------:|:----------:|:-----------:|
45
+ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
46
+
47
+ **Requirements:** Node.js 18+, Roblox Studio, Windows 10+ or macOS 12+
48
+
49
+ ## What It Does
10
50
 
11
51
  ### 1) MCP Tools: Direct execution in Studio from natural language
12
52
 
13
- The first pillar of Roblox MCP is **MCP tool execution**.
14
53
  AI can directly handle scripts, instances, properties, terrain, lighting, assets, audio, and animation inside Studio.
15
54
 
16
55
  - "Add particles + sound + cooldown when the player jumps."
17
56
  - "Build a boss arena at map center and place collision-safe spawn points."
18
57
  - "Change this module interface and update every dependent script."
19
-
20
- This is not just code generation. It is **executable, production-oriented actions**.
58
+ - "Generate terrain with mountains and rivers, then place spawn points on flat areas."
59
+ - "Search the Creator Store for a sword model and insert it into StarterPack."
21
60
 
22
61
  ### 2) Sync: Keep full project context stable for AI
23
62
 
24
- The second pillar is **Project Sync**.
25
63
  AI works from a synchronized local mirror, so multi-file updates stay consistent.
26
64
 
27
65
  ![Sync workflow — Studio and local files synchronized in real time](docs/assets/screenshots/sync.png)
@@ -29,36 +67,65 @@ AI works from a synchronized local mirror, so multi-file updates stay consistent
29
67
  - Basic: one-way sync (Studio -> Local)
30
68
  - Pro: bidirectional sync + per-type Direction/Apply Mode + history + multi-place
31
69
 
32
- You keep source-of-truth clear and avoid losing change context.
70
+ ### 3) Roblox Explorer: Browse Studio hierarchy in VSCode
71
+
72
+ View the full instance tree of your Roblox Studio place directly inside VSCode. Navigate services, open synced scripts and property files, and track sync status — all without switching to Studio.
73
+
74
+ ![Roblox Explorer — Studio instance tree displayed in VSCode sidebar](docs/assets/screenshots/roblox-explorer/roblox-explorer-screen.png)
33
75
 
34
- ## Immediate Value
76
+ - Class icons matching Studio for instant recognition
77
+ - Click to open synced scripts and property files
78
+ - Multi-place support with sync status indicators
79
+
80
+ ## Use Cases
81
+
82
+ - **Rapid prototyping**: Describe a game mechanic in natural language and watch AI build it in Studio
83
+ - **Bulk refactoring**: Rename a module interface and update every dependent script in one request
84
+ - **Terrain & environment**: Generate procedural terrain, set lighting/atmosphere, place assets — all from a single prompt
85
+ - **Multi-file consistency**: AI reads the full project via Sync and applies changes across related scripts together
86
+ - **Asset integration**: Search the Creator Store, insert models, and configure properties without leaving your editor
87
+
88
+ ## Why It Matters
35
89
 
36
90
  - Compress repetitive work: turn many manual edits into one request
37
91
  - Change related files together: not just one target file
38
92
  - Lower risk: rely on sync state and history before applying changes
39
93
  - Better token efficiency (Pro): reduce round trips with bulk actions
40
94
 
41
- ## Detailed Docs
95
+ ## Docs
42
96
 
43
- - [Tools Overview](docs/en/tools/overview.md)
97
+ - [Installation Guide](docs/en/installation/README.md)
98
+ - [Tools Reference](docs/en/tools/overview.md)
44
99
  - [Sync Deep Dive](docs/en/sync/overview.md)
100
+ - [Roblox Explorer (VSCode Extension)](docs/en/installation/roblox-explorer.md)
101
+ - [Compatibility](docs/compatibility.md)
102
+ - [Troubleshooting](docs/troubleshooting.md)
45
103
 
46
- ## Getting Started
104
+ ## FAQ
47
105
 
48
- Installation is complete in two steps:
106
+ **How do I let Claude edit my Roblox scripts?**
107
+ Install the Roblox Studio plugin, then register the MCP server (`npx -y @weppy/roblox-mcp`) in Claude Code or Claude Desktop. Claude can then directly read and write scripts inside Studio.
49
108
 
50
- 1. **Install Roblox Studio Plugin** Acts as a bridge between Studio and AI
51
- 2. **Register MCP Server with AI App**Configure your AI app to recognize Roblox MCP
109
+ **Can AI build Roblox games with this?**
110
+ Yes. AI can create instances, write scripts, generate terrain, set up lighting, insert assets, configure physics, and more all inside a live Roblox Studio session. It goes beyond code generation to executable actions.
52
111
 
53
- Takes just 5 minutes. 👉 [View Installation Guide](docs/en/installation/README.md)
112
+ **Does it work with Cursor / Codex / Gemini?**
113
+ Yes. Any MCP-compatible AI client works. Setup guides are provided for Claude Code, Claude Desktop, Cursor, Codex CLI, Codex Desktop, Gemini CLI, and Antigravity.
114
+
115
+ **What is the difference between Basic and Pro?**
116
+ Basic includes MCP tool execution and one-way sync (Studio -> Local). Pro adds bidirectional sync, bulk operations, terrain generation, spatial analysis, audio/animation control, and multi-place support. See the [Pro Upgrade Guide](docs/en/pro-upgrade.md).
117
+
118
+ **Is it safe? Can AI break my game?**
119
+ The server runs on localhost only (127.0.0.1:3002). Forbidden paths (CoreGui, CorePackages) are blocked. Rate limiting (450 req/min) and 30-second timeouts prevent runaway operations. All changes are trackable via sync history.
54
120
 
55
121
  ## Pro Upgrade
56
122
 
57
123
  Bidirectional Sync, advanced build capabilities, and AI token efficiency — all in one upgrade.
58
124
 
59
- 👉 [Pro Upgrade Guide](docs/en/pro-upgrade.md)
125
+ [Pro Upgrade Guide](docs/en/pro-upgrade.md)
126
+
127
+ ---
60
128
 
61
- ## Links
129
+ [![npm version](https://img.shields.io/npm/v/@weppy/roblox-mcp)](https://www.npmjs.com/package/@weppy/roblox-mcp) [![Node.js](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org/) [![Smithery](https://smithery.ai/badge/@hope1026/roblox-mcp)](https://smithery.ai/server/@hope1026/roblox-mcp)
62
130
 
63
- - [GitHub](https://github.com/hope1026/roblox-mcp)
64
- - [Issue Reports](https://github.com/hope1026/roblox-mcp/issues)
131
+ [GitHub Issues](https://github.com/hope1026/roblox-mcp/issues) · [Discussions](https://github.com/hope1026/roblox-mcp/discussions) · [npm](https://www.npmjs.com/package/@weppy/roblox-mcp)
package/SECURITY.md ADDED
@@ -0,0 +1,28 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ | Version | Supported |
6
+ |---------|-----------|
7
+ | 1.x (latest) | ✅ |
8
+ | < 1.0 | ❌ |
9
+
10
+ ## Reporting a Vulnerability
11
+
12
+ Do **not** open a public GitHub issue for security vulnerabilities.
13
+
14
+ Report security issues via [GitHub Issues](https://github.com/hope1026/roblox-mcp/issues/new) with the title prefixed `[SECURITY]`, or contact the maintainer via [GitHub Discussions](https://github.com/hope1026/roblox-mcp/discussions).
15
+
16
+ We will respond within 72 hours and aim to release a fix within 14 days for confirmed vulnerabilities.
17
+
18
+ ## Scope
19
+
20
+ - MCP server HTTP bridge (localhost:3002)
21
+ - Plugin authentication and session token handling
22
+ - License server communication
23
+
24
+ ## Out of Scope
25
+
26
+ - Roblox Studio itself
27
+ - Third-party AI client security
28
+ - Issues requiring physical access to the machine
package/SUPPORT.md ADDED
@@ -0,0 +1,27 @@
1
+ # Support
2
+
3
+ ## Documentation
4
+
5
+ - [Installation Guide](docs/en/installation/README.md)
6
+ - [Tools Reference](docs/en/tools/overview.md)
7
+ - [Sync Deep Dive](docs/en/sync/overview.md)
8
+ - [Roblox Explorer (VSCode Extension)](docs/en/installation/roblox-explorer.md)
9
+ - [Compatibility](docs/en/compatibility.md)
10
+ - [Troubleshooting](docs/en/troubleshooting.md)
11
+
12
+ ## Community Help
13
+
14
+ For questions and install issues, use [GitHub Discussions](https://github.com/hope1026/roblox-mcp/discussions).
15
+
16
+ Please include:
17
+ - Your OS and Node.js version
18
+ - AI client you're using
19
+ - What you've already tried
20
+
21
+ ## Bug Reports
22
+
23
+ For confirmed bugs, open an [Issue](https://github.com/hope1026/roblox-mcp/issues/new?template=bug_report.yml).
24
+
25
+ ## Pro Users
26
+
27
+ Pro users can reach out via the contact information provided in your Gumroad receipt.
@@ -0,0 +1,3 @@
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3d3d23843bb9049cb64e84bac8043e29747848661674fcb2270c86a12a77ac8
3
+ size 85677
@@ -0,0 +1,3 @@
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8db99920628c97321f10cc4b8a2144de542fcb309bc5fd2a53218e12258a1653
3
+ size 111692
@@ -1,3 +1,3 @@
1
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5888be201ba145eef507686b9fb2495c8aeb281d7dfc7b48260fd9d53242e938
3
- size 856271
2
+ oid sha256:b7ce0e0e4eeb4ca467e4d8b9208c0d9ac9db62f307285b41418856fa3f3729d0
3
+ size 804532
@@ -0,0 +1,44 @@
1
+ # Compatibility
2
+
3
+ ## Supported AI Clients
4
+
5
+ | Client | Basic | Pro | Setup guide |
6
+ |--------|:-----:|:---:|-------------|
7
+ | Claude Code | ✅ | ✅ | [Guide](en/installation/ai-apps/claude-code.md) |
8
+ | Claude Desktop | ✅ | ✅ | [Guide](en/installation/ai-apps/claude-app.md) |
9
+ | Cursor | ✅ | ✅ | MCP config: `npx -y @weppy/roblox-mcp` |
10
+ | Codex CLI | ✅ | ✅ | [Guide](en/installation/ai-apps/codex-cli.md) |
11
+ | Codex Desktop | ✅ | ✅ | [Guide](en/installation/ai-apps/codex-app.md) |
12
+ | Gemini CLI | ✅ | ✅ | [Guide](en/installation/ai-apps/gemini-cli.md) |
13
+ | Any MCP client | ✅ | ✅ | Server command: `npx -y @weppy/roblox-mcp` |
14
+
15
+ ## System Requirements
16
+
17
+ | Requirement | Minimum |
18
+ |-------------|---------|
19
+ | Node.js | 18.0.0+ |
20
+ | Roblox Studio | Latest (keep auto-updated) |
21
+ | OS | Windows 10+ or macOS 12+ |
22
+ | Network | localhost:3002 must be accessible |
23
+
24
+ ## Feature Matrix (Basic vs Pro)
25
+
26
+ | Feature | Basic | Pro |
27
+ |---------|:-----:|:---:|
28
+ | MCP tool execution (scripts, instances, properties) | ✅ | ✅ |
29
+ | Studio → Local one-way sync | ✅ | ✅ |
30
+ | Bidirectional sync (Local → Studio) | ❌ | ✅ |
31
+ | Per-type Direction and Apply Mode | ❌ | ✅ |
32
+ | Sync history and changelog | ❌ | ✅ |
33
+ | Multi-place support (up to 3 places) | ❌ | ✅ |
34
+ | Bulk operations (mass_create, mass_set) | ❌ | ✅ |
35
+ | Advanced spatial queries | ❌ | ✅ |
36
+ | Terrain generation and fill | ❌ | ✅ |
37
+ | Physics group management | ❌ | ✅ |
38
+ | Tween and animation control | ❌ | ✅ |
39
+ | Audio control | ❌ | ✅ |
40
+ | Lighting and atmosphere | ❌ | ✅ |
41
+
42
+ ## MCP Tool Count
43
+
44
+ 21 consolidated tools with action-based sub-commands. See [Tools Reference](en/tools/overview.md) for the full list.
@@ -39,6 +39,14 @@ Register the MCP server with your AI app. You can use it with any AI app that su
39
39
 
40
40
  ---
41
41
 
42
+ ## Optional: Install Roblox Explorer (VSCode Extension)
43
+
44
+ Browse synced instance trees inside VSCode with Roblox class icons.
45
+
46
+ 👉 [Roblox Explorer Installation Guide](roblox-explorer.md)
47
+
48
+ ---
49
+
42
50
  ## After Installation
43
51
 
44
52
  1. Open **Roblox Studio**, go to Plugins tab and click **W-MCP** → **Connect**