@weppy/roblox-mcp 2.7.8 → 2.7.10

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/CHANGELOG.md CHANGED
@@ -10,6 +10,25 @@ All notable changes to this project will be documented in this file.
10
10
 
11
11
 
12
12
 
13
+
14
+
15
+ ## [2.7.10] - 2026-05-21
16
+
17
+ ### Features
18
+
19
+ - **Antigravity IDE and Antigravity CLI setup support** — The one-line installers and packaged setup scripts now recognize the newer Antigravity configuration layout, including Antigravity IDE and Antigravity CLI. Antigravity CLI users get a dedicated global MCP config path at `~/.gemini/antigravity-cli/mcp_config.json`, while existing Antigravity and Antigravity IDE users continue to use their current config locations.
20
+
21
+ ### Stability
22
+
23
+ - **More reliable MCP registration for Antigravity users** — Installers now check the current Antigravity config candidates separately, update existing files when present, and create the canonical `mcpServers` shape when needed. This reduces false "already configured" states and makes repair installs safer across macOS, Windows, and Linux.
24
+
25
+ ## [2.7.9] - 2026-05-17
26
+
27
+ ### Stability
28
+
29
+ - **Clearer failure diagnostics for AI tool calls** — WEPPY now records more precise low-cardinality diagnostics when Roblox Studio commands time out or fail inside workspace state sync and script editing. This helps support and future fixes identify whether failures came from queue delays, Studio connection state, script edit input, or a specific workspace sync stage, without exposing script source or raw Studio paths.
30
+ - **More resilient workspace state sync reporting** — Workspace state sync now labels failures by stage, so a problem while reading scripts, viewport metadata, tree data, or change history no longer collapses into a generic runtime error. Existing workflows and tool behavior are unchanged.
31
+
13
32
  ## [2.7.8] - 2026-05-16
14
33
 
15
34
  ### Features
package/README.md CHANGED
@@ -18,13 +18,13 @@ No copy-pasting code. AI does the work, you review the results.
18
18
 
19
19
  ## Quick Install
20
20
 
21
- Install with the guided web page.
21
+ Start from the web install page. It shows the recommended one-line script for your platform first.
22
22
 
23
- 👉 **[Install Page](https://weppyai.com/en/install)**
23
+ 👉 **[Web Install Page](https://weppyai.com/en/install)**
24
24
 
25
- ### Terminal One-Line Install
25
+ ### Recommended One-Line Install
26
26
 
27
- If you're comfortable with the terminal, install everything in one line.
27
+ On the install page, copy the one-line script and run it in Terminal or PowerShell.
28
28
 
29
29
  **macOS / Linux**
30
30
 
@@ -40,24 +40,24 @@ irm https://raw.githubusercontent.com/hope1026/weppy-roblox-mcp/main/install.ps1
40
40
 
41
41
  Then reopen your AI app and restart Roblox Studio.
42
42
 
43
- Automatic MCP registration supports Claude Code, Claude Desktop, Cursor, Codex CLI/App, Gemini CLI, and Antigravity.
43
+ Automatic MCP registration supports Claude Code, Claude Desktop, Cursor, Codex CLI/App, Gemini CLI, and Antigravity / Antigravity IDE / Antigravity CLI.
44
44
  For Claude Code, the installer also tries to add and install the WEPPY Roblox AI Toolkit. For Codex, it adds the WEPPY Roblox AI Toolkit marketplace and then asks you to install WEPPY Roblox AI Toolkit from Plugin Directory.
45
45
 
46
- ### Manual Install
46
+ ### Browser Web Install
47
47
 
48
- If the one-line install does not work, or automatic installation is not available in your environment:
48
+ If terminal or PowerShell is uncomfortable, use the terminal-free web installer on the same install page.
49
49
 
50
- **Step 1** - Use the web install page for the Roblox Studio plugin and app-specific setup.
50
+ ### Manual Install
51
51
 
52
- 👉 **[Web Install Page](https://weppyai.com/en/install)**
52
+ If the one-line install or terminal-free web installer does not work, register the MCP server manually with your AI app.
53
53
 
54
- **Step 2** - Register the MCP server with your AI app:
54
+ Use this server command:
55
55
 
56
56
  ```bash
57
57
  npx -y @weppy/roblox-mcp@latest
58
58
  ```
59
59
 
60
- Supported AI apps are Claude Code, Claude Desktop, Cursor, Codex CLI, Codex App, Gemini CLI, and Antigravity.
60
+ Supported AI apps are Claude Code, Claude Desktop, Cursor, Codex CLI, Codex App, Gemini CLI, and Antigravity / Antigravity IDE / Antigravity CLI.
61
61
 
62
62
  > Any MCP-compatible AI client works. The server command is `npx -y @weppy/roblox-mcp@latest`.
63
63
 
@@ -82,8 +82,8 @@ After adding the Codex marketplace, restart Codex, open Plugin Directory, and in
82
82
 
83
83
  ## Compatibility
84
84
 
85
- | Claude Code | Claude Desktop | Cursor | Codex CLI | Gemini CLI | Antigravity |
86
- |:-----------:|:--------------:|:------:|:---------:|:----------:|:-----------:|
85
+ | Claude Code | Claude Desktop | Cursor | Codex CLI | Gemini CLI | Antigravity / Antigravity IDE / Antigravity CLI |
86
+ |:-----------:|:--------------:|:------:|:---------:|:----------:|:-----------------------------:|
87
87
  | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
88
88
 
89
89
  **Requirements:** Node.js 18+, Roblox Studio, Windows 10+ or macOS 12+
@@ -177,6 +177,14 @@ Detailed guides and app-specific setup now live on the web.
177
177
 
178
178
  For app setup details, open the web docs hub and choose the relevant AI client guide.
179
179
 
180
+ ## Privacy & Telemetry
181
+
182
+ WEPPY uses Google Analytics 4 Measurement Protocol telemetry to understand product usage, reliability, platform coverage, and feature adoption. Telemetry can be disabled by setting `ENABLE_TELEMETRY=false` or `ENABLE_TELEMETRY=0` in the MCP server environment.
183
+
184
+ WEPPY does not collect your name, email address, raw license key, local file paths, script source, or Roblox project contents through telemetry.
185
+
186
+ See [PRIVACY.md](PRIVACY.md) for the full telemetry notice.
187
+
180
188
  ## FAQ
181
189
 
182
190
  ### How do I connect Claude Code to Roblox Studio?
@@ -218,6 +226,4 @@ Use of the Weppy name and logos is governed by [TRADEMARKS.md](TRADEMARKS.md).
218
226
 
219
227
  [![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/weppy-roblox-mcp)](https://smithery.ai/server/@hope1026/weppy-roblox-mcp)
220
228
 
221
- [![Roblox MCP on Glama](https://glama.ai/mcp/servers/hope1026/roblox-mcp/badges/card.svg)](https://glama.ai/mcp/servers/hope1026/roblox-mcp)
222
-
223
229
  [GitHub Issues](https://github.com/hope1026/weppy-roblox-mcp/issues) · [Discussions](https://github.com/hope1026/weppy-roblox-mcp/discussions) · [npm](https://www.npmjs.com/package/@weppy/roblox-mcp)