@weppy/roblox-mcp 1.2.1 → 1.2.3
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/.claude-plugin/marketplace.json +2 -2
- package/CHANGELOG.md +22 -0
- package/docs/en/tools/overview.md +0 -1
- package/docs/es/tools/overview.md +0 -1
- package/docs/id/tools/overview.md +0 -1
- package/docs/ja/tools/overview.md +0 -1
- package/docs/ko/tools/overview.md +0 -1
- package/docs/pt-br/tools/overview.md +0 -1
- package/package.json +1 -1
- package/plugins/weppy-roblox-mcp/.claude-plugin/plugin.json +1 -1
- package/plugins/weppy-roblox-mcp/dist/index.js +41 -45
|
@@ -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.2.
|
|
9
|
+
"version": "1.2.3"
|
|
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.2.
|
|
16
|
+
"version": "1.2.3",
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "hope1026"
|
|
19
19
|
},
|
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,28 @@ All notable changes to this project will be documented in this file.
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [1.2.3] - 2026-03-02
|
|
16
|
+
|
|
17
|
+
Other Changes
|
|
18
|
+
- improved UI, security, and overall stability
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## [1.2.2] - 2026-03-01
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
- improve sync conflict UI and tier defaults
|
|
26
|
+
- update icon paths to use PNG format and enhance file visibility handling
|
|
27
|
+
- add IconResolver for managing icons based on Roblox class names
|
|
28
|
+
- Add ManualChangesDialog and ManualSyncPopup for handling manual sync changes
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
- remove dead run_command action from system_info tool
|
|
33
|
+
|
|
34
|
+
|
|
13
35
|
## [1.2.1] - 2026-02-28
|
|
14
36
|
|
|
15
37
|
### Other Changes
|
|
@@ -248,7 +248,6 @@ Sync policy:
|
|
|
248
248
|
| `place_info` | Get place ID, name, creator | Pro |
|
|
249
249
|
| `services` | List all Roblox services | Pro |
|
|
250
250
|
| `studio_settings` | Get Studio preferences | Pro |
|
|
251
|
-
| `run_command` | Execute Studio command | Pro |
|
|
252
251
|
|
|
253
252
|
## Batch Execute (Pro)
|
|
254
253
|
|
|
@@ -248,7 +248,6 @@ Politica de Sync:
|
|
|
248
248
|
| `place_info` | Obtener Place ID, nombre, creador | Pro |
|
|
249
249
|
| `services` | Listar todos los servicios de Roblox | Pro |
|
|
250
250
|
| `studio_settings` | Obtener preferencias de Studio | Pro |
|
|
251
|
-
| `run_command` | Ejecutar comando de Studio | Pro |
|
|
252
251
|
|
|
253
252
|
## Batch Execute (Pro)
|
|
254
253
|
|
|
@@ -248,7 +248,6 @@ Kebijakan Sync:
|
|
|
248
248
|
| `place_info` | Mendapatkan Place ID, nama, kreator | Pro |
|
|
249
249
|
| `services` | Mendaftar semua layanan Roblox | Pro |
|
|
250
250
|
| `studio_settings` | Mendapatkan preferensi Studio | Pro |
|
|
251
|
-
| `run_command` | Menjalankan perintah Studio | Pro |
|
|
252
251
|
|
|
253
252
|
## Batch Execute (Pro)
|
|
254
253
|
|
|
@@ -248,7 +248,6 @@ Politica de Sync:
|
|
|
248
248
|
| `place_info` | Obter Place ID, nome, criador | Pro |
|
|
249
249
|
| `services` | Listar todos os servicos Roblox | Pro |
|
|
250
250
|
| `studio_settings` | Obter preferencias do Studio | Pro |
|
|
251
|
-
| `run_command` | Executar comando do Studio | Pro |
|
|
252
251
|
|
|
253
252
|
## Batch Execute (Pro)
|
|
254
253
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weppy/roblox-mcp",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server for Roblox Studio integration - enables AI coding agents to interact with Roblox Studio in real-time",
|
|
5
5
|
"main": "plugins/weppy-roblox-mcp/dist/index.js",
|
|
6
6
|
"type": "module",
|