@weppy/roblox-mcp 1.0.3 → 1.2.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.
- package/.claude-plugin/marketplace.json +3 -3
- package/CHANGELOG.md +17 -0
- package/README.md +2 -0
- package/docs/assets/screenshots/sync.png +3 -0
- package/docs/assets/screenshots/sync_conflict.png +3 -0
- package/docs/en/installation/ai-apps/gemini-cli.md +2 -2
- package/docs/en/sync/overview.md +13 -1
- package/docs/es/README.md +2 -0
- package/docs/es/installation/ai-apps/gemini-cli.md +2 -2
- package/docs/es/sync/overview.md +13 -1
- package/docs/id/README.md +2 -0
- package/docs/id/installation/ai-apps/gemini-cli.md +2 -2
- package/docs/id/sync/overview.md +13 -1
- package/docs/ja/README.md +2 -0
- package/docs/ja/installation/ai-apps/gemini-cli.md +2 -2
- package/docs/ja/sync/overview.md +13 -1
- package/docs/ko/README.md +3 -1
- package/docs/ko/installation/ai-apps/gemini-cli.md +2 -2
- package/docs/ko/sync/overview.md +13 -1
- package/docs/pt-br/README.md +2 -0
- package/docs/pt-br/installation/ai-apps/gemini-cli.md +2 -2
- package/docs/pt-br/sync/overview.md +13 -1
- package/package.json +1 -1
- package/plugins/weppy-roblox-mcp/.claude-plugin/plugin.json +2 -2
- package/plugins/weppy-roblox-mcp/dist/index.js +41 -41
|
@@ -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.
|
|
9
|
+
"version": "1.2.1"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "weppy-roblox-mcp",
|
|
14
14
|
"source": "./plugins/weppy-roblox-mcp",
|
|
15
|
-
"description": "MCP server for Roblox Studio integration -
|
|
16
|
-
"version": "1.
|
|
15
|
+
"description": "MCP server for Roblox Studio integration - AI-powered game development with specialized agents and skills",
|
|
16
|
+
"version": "1.2.1",
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "hope1026"
|
|
19
19
|
},
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,23 @@ All notable changes to this project will be documented in this file.
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [1.2.1] - 2026-02-28
|
|
14
|
+
|
|
15
|
+
### Other Changes
|
|
16
|
+
|
|
17
|
+
- UI improvements and stability enhancements
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [1.2.0] - 2026-02-26
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
- Update documentation and scripts for CommandHandlers structure and verification process
|
|
25
|
+
- Implement extended handlers for Roblox Engine API access
|
|
26
|
+
|
|
27
|
+
|
|
11
28
|
## [1.0.3] - 2026-02-24
|
|
12
29
|
|
|
13
30
|
### Features
|
package/README.md
CHANGED
|
@@ -24,6 +24,8 @@ This is not just code generation. It is **executable, production-oriented action
|
|
|
24
24
|
The second pillar is **Project Sync**.
|
|
25
25
|
AI works from a synchronized local mirror, so multi-file updates stay consistent.
|
|
26
26
|
|
|
27
|
+

|
|
28
|
+
|
|
27
29
|
- Basic: one-way sync (Studio -> Local)
|
|
28
30
|
- Pro: bidirectional sync + per-type Direction/Apply Mode + history + multi-place
|
|
29
31
|
|
|
@@ -61,7 +61,7 @@ If specific environment variables are needed:
|
|
|
61
61
|
|
|
62
62
|
**CLI:**
|
|
63
63
|
```bash
|
|
64
|
-
gemini mcp add weppy-roblox-mcp npx --trust -e
|
|
64
|
+
gemini mcp add weppy-roblox-mcp npx --trust -e HTTP_PORT=3002 -- -y @weppy/roblox-mcp
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
**Configuration file:**
|
|
@@ -72,7 +72,7 @@ gemini mcp add weppy-roblox-mcp npx --trust -e MCP_PORT=3002 -- -y @weppy/roblox
|
|
|
72
72
|
"command": "npx",
|
|
73
73
|
"args": ["-y", "@weppy/roblox-mcp"],
|
|
74
74
|
"env": {
|
|
75
|
-
"
|
|
75
|
+
"HTTP_PORT": "3002"
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
package/docs/en/sync/overview.md
CHANGED
|
@@ -12,6 +12,8 @@ Without Sync, AI only sees snippets pasted into chat. With Sync enabled, AI work
|
|
|
12
12
|
|
|
13
13
|
## How it works
|
|
14
14
|
|
|
15
|
+

|
|
16
|
+
|
|
15
17
|
1. Full Sync: initial mirror from Studio tree/instances to local files
|
|
16
18
|
2. Incremental Sync: continuous update of new changes
|
|
17
19
|
3. History/Status tracking: inspect what changed, when, and in which direction
|
|
@@ -92,7 +94,17 @@ In Pro, Direction and Apply Mode can be controlled per type.
|
|
|
92
94
|
- "Check sync status, then summarize only risky changes from recent history"
|
|
93
95
|
- "Refactor scripts in `ServerScriptService` first and include history output"
|
|
94
96
|
|
|
95
|
-
### 3)
|
|
97
|
+
### 3) Resolve conflicts
|
|
98
|
+
|
|
99
|
+
When changes are detected on both Studio and local sides during bidirectional sync, a conflict resolution dialog appears.
|
|
100
|
+
|
|
101
|
+

|
|
102
|
+
|
|
103
|
+
- **Studio Priority**: overwrite with Studio state as the source of truth
|
|
104
|
+
- **Local Priority**: apply local files to Studio
|
|
105
|
+
- **Per-File**: choose which side takes priority for each file individually
|
|
106
|
+
|
|
107
|
+
### 4) Recover when needed
|
|
96
108
|
|
|
97
109
|
- Track recent entries with `history`
|
|
98
110
|
- Inspect target file with `read_file`
|
package/docs/es/README.md
CHANGED
|
@@ -24,6 +24,8 @@ No es solo generacion de codigo. Son **acciones ejecutables orientadas a producc
|
|
|
24
24
|
El segundo eje es **Project Sync**.
|
|
25
25
|
La IA trabaja sobre un espejo local sincronizado, asi que los cambios en multiples archivos se mantienen consistentes.
|
|
26
26
|
|
|
27
|
+

|
|
28
|
+
|
|
27
29
|
- Basic: sincronizacion unidireccional (Studio -> Local)
|
|
28
30
|
- Pro: sincronizacion bidireccional + Direction/Apply Mode por tipo + historial + multiplace
|
|
29
31
|
|
|
@@ -61,7 +61,7 @@ Si se necesitan variables de entorno específicas:
|
|
|
61
61
|
|
|
62
62
|
**CLI:**
|
|
63
63
|
```bash
|
|
64
|
-
gemini mcp add weppy-roblox-mcp npx --trust -e
|
|
64
|
+
gemini mcp add weppy-roblox-mcp npx --trust -e HTTP_PORT=3002 -- -y @weppy/roblox-mcp
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
**Archivo de configuración:**
|
|
@@ -72,7 +72,7 @@ gemini mcp add weppy-roblox-mcp npx --trust -e MCP_PORT=3002 -- -y @weppy/roblox
|
|
|
72
72
|
"command": "npx",
|
|
73
73
|
"args": ["-y", "@weppy/roblox-mcp"],
|
|
74
74
|
"env": {
|
|
75
|
-
"
|
|
75
|
+
"HTTP_PORT": "3002"
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
package/docs/es/sync/overview.md
CHANGED
|
@@ -12,6 +12,8 @@ Sin Sync, la IA solo ve fragmentos pegados en el chat. Con Sync activo, trabaja
|
|
|
12
12
|
|
|
13
13
|
## Como funciona
|
|
14
14
|
|
|
15
|
+

|
|
16
|
+
|
|
15
17
|
1. Full Sync: espejo inicial del arbol/instancias de Studio a local
|
|
16
18
|
2. Incremental Sync: reflejo continuo de cambios nuevos
|
|
17
19
|
3. Seguimiento de History/Status: ver que cambio, cuando y en que direccion
|
|
@@ -92,7 +94,17 @@ En Pro puedes controlar Direction y Apply Mode por tipo.
|
|
|
92
94
|
- "Revisa el estado de sync y resume solo cambios riesgosos del historial reciente"
|
|
93
95
|
- "Refactoriza primero scripts de `ServerScriptService` y deja registro en historial"
|
|
94
96
|
|
|
95
|
-
### 3)
|
|
97
|
+
### 3) Resolver conflictos
|
|
98
|
+
|
|
99
|
+
Cuando se detectan cambios tanto en Studio como en local durante la sincronizacion bidireccional, aparece un dialogo de resolucion de conflictos.
|
|
100
|
+
|
|
101
|
+

|
|
102
|
+
|
|
103
|
+
- **Studio Priority**: sobrescribir usando el estado de Studio como fuente de verdad
|
|
104
|
+
- **Local Priority**: aplicar los archivos locales a Studio
|
|
105
|
+
- **Per-File**: elegir que lado tiene prioridad para cada archivo individualmente
|
|
106
|
+
|
|
107
|
+
### 4) Recuperar cuando sea necesario
|
|
96
108
|
|
|
97
109
|
- Sigue cambios recientes con `history`
|
|
98
110
|
- Inspecciona archivo objetivo con `read_file`
|
package/docs/id/README.md
CHANGED
|
@@ -24,6 +24,8 @@ Ini bukan sekadar generate kode. Ini adalah **aksi yang benar-benar bisa dieksek
|
|
|
24
24
|
Pilar kedua adalah **Project Sync**.
|
|
25
25
|
AI bekerja dari mirror lokal yang tersinkron, jadi perubahan lintas banyak file tetap konsisten.
|
|
26
26
|
|
|
27
|
+

|
|
28
|
+
|
|
27
29
|
- Basic: sinkronisasi satu arah (Studio -> Local)
|
|
28
30
|
- Pro: sinkronisasi dua arah + Direction/Apply Mode per tipe + riwayat + multiplace
|
|
29
31
|
|
|
@@ -61,7 +61,7 @@ Jika variabel lingkungan tertentu diperlukan:
|
|
|
61
61
|
|
|
62
62
|
**CLI:**
|
|
63
63
|
```bash
|
|
64
|
-
gemini mcp add weppy-roblox-mcp npx --trust -e
|
|
64
|
+
gemini mcp add weppy-roblox-mcp npx --trust -e HTTP_PORT=3002 -- -y @weppy/roblox-mcp
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
**File konfigurasi:**
|
|
@@ -72,7 +72,7 @@ gemini mcp add weppy-roblox-mcp npx --trust -e MCP_PORT=3002 -- -y @weppy/roblox
|
|
|
72
72
|
"command": "npx",
|
|
73
73
|
"args": ["-y", "@weppy/roblox-mcp"],
|
|
74
74
|
"env": {
|
|
75
|
-
"
|
|
75
|
+
"HTTP_PORT": "3002"
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
package/docs/id/sync/overview.md
CHANGED
|
@@ -12,6 +12,8 @@ Tanpa Sync, AI hanya melihat potongan kode yang ditempel di chat. Dengan Sync ak
|
|
|
12
12
|
|
|
13
13
|
## Cara kerjanya
|
|
14
14
|
|
|
15
|
+

|
|
16
|
+
|
|
15
17
|
1. Full Sync: mirror awal dari tree/instance Studio ke lokal
|
|
16
18
|
2. Incremental Sync: perubahan baru terus disinkronkan
|
|
17
19
|
3. Pelacakan History/Status: cek apa yang berubah, kapan, dan ke arah mana
|
|
@@ -92,7 +94,17 @@ Di Pro, Direction dan Apply Mode bisa diatur per tipe.
|
|
|
92
94
|
- "Cek status sync, lalu rangkum hanya perubahan berisiko dari riwayat terbaru"
|
|
93
95
|
- "Refactor dulu script di `ServerScriptService` dan sertakan catatan riwayat"
|
|
94
96
|
|
|
95
|
-
### 3)
|
|
97
|
+
### 3) Menyelesaikan konflik
|
|
98
|
+
|
|
99
|
+
Ketika perubahan terdeteksi di sisi Studio maupun lokal selama sinkronisasi dua arah, dialog resolusi konflik akan muncul.
|
|
100
|
+
|
|
101
|
+

|
|
102
|
+
|
|
103
|
+
- **Studio Priority**: timpa dengan status Studio sebagai sumber kebenaran
|
|
104
|
+
- **Local Priority**: terapkan file lokal ke Studio
|
|
105
|
+
- **Per-File**: pilih sisi mana yang diprioritaskan untuk setiap file secara individual
|
|
106
|
+
|
|
107
|
+
### 4) Pemulihan saat dibutuhkan
|
|
96
108
|
|
|
97
109
|
- Lacak perubahan terbaru dengan `history`
|
|
98
110
|
- Periksa file target dengan `read_file`
|
package/docs/ja/README.md
CHANGED
|
@@ -24,6 +24,8 @@ AIがStudio内で、スクリプト、インスタンス、プロパティ、地
|
|
|
24
24
|
第二の柱は**Project Sync**です。
|
|
25
25
|
同期されたローカルミラーを基準にAIが作業するため、複数ファイルにまたがる変更も一貫して適用できます。
|
|
26
26
|
|
|
27
|
+

|
|
28
|
+
|
|
27
29
|
- Basic: 片方向同期 (Studio -> Local)
|
|
28
30
|
- Pro: 双方向同期 + タイプ別Direction/Apply Mode + 変更履歴 + マルチPlace
|
|
29
31
|
|
|
@@ -61,7 +61,7 @@ gemini mcp add weppy-roblox-mcp npx -s user --trust -- -y @weppy/roblox-mcp
|
|
|
61
61
|
|
|
62
62
|
**CLI:**
|
|
63
63
|
```bash
|
|
64
|
-
gemini mcp add weppy-roblox-mcp npx --trust -e
|
|
64
|
+
gemini mcp add weppy-roblox-mcp npx --trust -e HTTP_PORT=3002 -- -y @weppy/roblox-mcp
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
**設定ファイル:**
|
|
@@ -72,7 +72,7 @@ gemini mcp add weppy-roblox-mcp npx --trust -e MCP_PORT=3002 -- -y @weppy/roblox
|
|
|
72
72
|
"command": "npx",
|
|
73
73
|
"args": ["-y", "@weppy/roblox-mcp"],
|
|
74
74
|
"env": {
|
|
75
|
-
"
|
|
75
|
+
"HTTP_PORT": "3002"
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
package/docs/ja/sync/overview.md
CHANGED
|
@@ -12,6 +12,8 @@ Syncがない場合、AIはチャットに貼られた断片だけを見て判
|
|
|
12
12
|
|
|
13
13
|
## 基本の動作
|
|
14
14
|
|
|
15
|
+

|
|
16
|
+
|
|
15
17
|
1. Full Sync: Studioツリー/インスタンスをローカルに初期ミラー
|
|
16
18
|
2. Incremental Sync: 以後の変更分のみを継続反映
|
|
17
19
|
3. History/Status追跡: いつ・どの方向で何が変わったかを確認
|
|
@@ -92,7 +94,17 @@ ProではタイプごとにDirection/Apply Modeを細かく制御できます。
|
|
|
92
94
|
- 「Sync状態を確認して、直近履歴からリスクの高い変更だけ要約して」
|
|
93
95
|
- 「`ServerScriptService` のスクリプトを先にリファクタリングして、履歴も残して」
|
|
94
96
|
|
|
95
|
-
### 3)
|
|
97
|
+
### 3) コンフリクトの解決
|
|
98
|
+
|
|
99
|
+
双方向同期中にStudioとローカルの両方で変更が検出されると、コンフリクト解決ダイアログが表示されます。
|
|
100
|
+
|
|
101
|
+

|
|
102
|
+
|
|
103
|
+
- **Studio Priority**: Studio側の状態を基準に上書き
|
|
104
|
+
- **Local Priority**: ローカルファイルをStudioに反映
|
|
105
|
+
- **Per-File**: ファイルごとにどちら側を優先するか個別に選択
|
|
106
|
+
|
|
107
|
+
### 4) 問題時の復旧
|
|
96
108
|
|
|
97
109
|
- `history` で最近の変更を追跡
|
|
98
110
|
- `read_file` で対象ファイルを確認
|
package/docs/ko/README.md
CHANGED
|
@@ -21,9 +21,11 @@ Roblox MCP의 첫 번째 축은 **MCP Tool 실행 능력**입니다.
|
|
|
21
21
|
|
|
22
22
|
### 2) Sync: AI가 프로젝트 전체 문맥을 읽고 유지
|
|
23
23
|
|
|
24
|
-
두 번째 축은 **Project Sync**입니다.
|
|
24
|
+
두 번째 축은 **Project Sync**입니다.
|
|
25
25
|
AI가 로컬 동기화된 프로젝트를 기준으로 전체 구조를 이해해, 여러 파일에 걸친 변경을 일관되게 수행합니다.
|
|
26
26
|
|
|
27
|
+

|
|
28
|
+
|
|
27
29
|
- Basic: Studio -> Local 단방향 동기화
|
|
28
30
|
- Pro: 양방향 동기화 + 타입별 Direction/Apply Mode + 변경 기록 + 멀티 Place
|
|
29
31
|
|
|
@@ -61,7 +61,7 @@ gemini mcp add weppy-roblox-mcp npx -s user --trust -- -y @weppy/roblox-mcp
|
|
|
61
61
|
|
|
62
62
|
**CLI:**
|
|
63
63
|
```bash
|
|
64
|
-
gemini mcp add weppy-roblox-mcp npx --trust -e
|
|
64
|
+
gemini mcp add weppy-roblox-mcp npx --trust -e HTTP_PORT=3002 -- -y @weppy/roblox-mcp
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
**설정 파일:**
|
|
@@ -72,7 +72,7 @@ gemini mcp add weppy-roblox-mcp npx --trust -e MCP_PORT=3002 -- -y @weppy/roblox
|
|
|
72
72
|
"command": "npx",
|
|
73
73
|
"args": ["-y", "@weppy/roblox-mcp"],
|
|
74
74
|
"env": {
|
|
75
|
-
"
|
|
75
|
+
"HTTP_PORT": "3002"
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
package/docs/ko/sync/overview.md
CHANGED
|
@@ -12,6 +12,8 @@ Sync가 없으면 AI는 대화에 붙여 넣은 코드 일부만 보고 판단
|
|
|
12
12
|
|
|
13
13
|
## 기본 동작 방식
|
|
14
14
|
|
|
15
|
+

|
|
16
|
+
|
|
15
17
|
1. Full Sync: Studio 트리와 인스턴스를 로컬 미러로 초기 동기화
|
|
16
18
|
2. Incremental Sync: 변경 감시로 이후 변경분만 반영
|
|
17
19
|
3. History/Status 추적: 어떤 변경이 언제 어떤 방향으로 반영됐는지 확인
|
|
@@ -92,7 +94,17 @@ Pro에서는 타입별로 Direction/Apply Mode를 다르게 설정해 워크플
|
|
|
92
94
|
- "Sync 상태 확인하고, 최근 변경 기록 기준으로 위험한 변경만 요약해줘"
|
|
93
95
|
- "`ServerScriptService` 쪽 스크립트만 우선 리팩터링하고, 변경 이력까지 남겨줘"
|
|
94
96
|
|
|
95
|
-
### 3)
|
|
97
|
+
### 3) 충돌 발생 시 해결하기
|
|
98
|
+
|
|
99
|
+
양방향 동기화 중 Studio와 로컬 양쪽에서 변경이 감지되면, 아래와 같은 충돌 해결 화면이 나타납니다.
|
|
100
|
+
|
|
101
|
+

|
|
102
|
+
|
|
103
|
+
- **Studio Priority**: Studio 쪽 상태를 기준으로 덮어쓰기
|
|
104
|
+
- **Local Priority**: 로컬 파일을 기준으로 Studio에 반영
|
|
105
|
+
- **Per-File**: 파일별로 어느 쪽을 우선할지 개별 선택
|
|
106
|
+
|
|
107
|
+
### 4) 문제 발생 시 복구하기
|
|
96
108
|
|
|
97
109
|
- `history`로 최근 변경을 추적
|
|
98
110
|
- 필요한 파일을 `read_file`로 확인
|
package/docs/pt-br/README.md
CHANGED
|
@@ -24,6 +24,8 @@ Nao e apenas geracao de codigo. Sao **acoes executaveis para fluxo real de desen
|
|
|
24
24
|
O segundo eixo e o **Project Sync**.
|
|
25
25
|
A IA trabalha com um espelho local sincronizado, entao alteracoes em varios arquivos continuam consistentes.
|
|
26
26
|
|
|
27
|
+

|
|
28
|
+
|
|
27
29
|
- Basic: sincronizacao unidirecional (Studio -> Local)
|
|
28
30
|
- Pro: sincronizacao bidirecional + Direction/Apply Mode por tipo + historico + multiplace
|
|
29
31
|
|
|
@@ -61,7 +61,7 @@ Se variáveis de ambiente específicas forem necessárias:
|
|
|
61
61
|
|
|
62
62
|
**CLI:**
|
|
63
63
|
```bash
|
|
64
|
-
gemini mcp add weppy-roblox-mcp npx --trust -e
|
|
64
|
+
gemini mcp add weppy-roblox-mcp npx --trust -e HTTP_PORT=3002 -- -y @weppy/roblox-mcp
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
**Arquivo de configuração:**
|
|
@@ -72,7 +72,7 @@ gemini mcp add weppy-roblox-mcp npx --trust -e MCP_PORT=3002 -- -y @weppy/roblox
|
|
|
72
72
|
"command": "npx",
|
|
73
73
|
"args": ["-y", "@weppy/roblox-mcp"],
|
|
74
74
|
"env": {
|
|
75
|
-
"
|
|
75
|
+
"HTTP_PORT": "3002"
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
|
@@ -12,6 +12,8 @@ Sem Sync, a IA so enxerga trechos colados no chat. Com Sync ativo, ela trabalha
|
|
|
12
12
|
|
|
13
13
|
## Como funciona
|
|
14
14
|
|
|
15
|
+

|
|
16
|
+
|
|
15
17
|
1. Full Sync: espelho inicial da arvore/instancias do Studio para local
|
|
16
18
|
2. Incremental Sync: atualizacao continua das mudancas novas
|
|
17
19
|
3. Rastreamento de History/Status: ver o que mudou, quando e em qual direcao
|
|
@@ -92,7 +94,17 @@ No Pro, voce controla Direction e Apply Mode por tipo.
|
|
|
92
94
|
- "Verifica o estado do sync e resume so mudancas de risco do historico recente"
|
|
93
95
|
- "Refatora primeiro scripts de `ServerScriptService` e registra no historico"
|
|
94
96
|
|
|
95
|
-
### 3)
|
|
97
|
+
### 3) Resolver conflitos
|
|
98
|
+
|
|
99
|
+
Quando mudancas sao detectadas tanto no Studio quanto no local durante a sincronizacao bidirecional, um dialogo de resolucao de conflitos aparece.
|
|
100
|
+
|
|
101
|
+

|
|
102
|
+
|
|
103
|
+
- **Studio Priority**: sobrescrever usando o estado do Studio como fonte de verdade
|
|
104
|
+
- **Local Priority**: aplicar arquivos locais ao Studio
|
|
105
|
+
- **Per-File**: escolher qual lado tem prioridade para cada arquivo individualmente
|
|
106
|
+
|
|
107
|
+
### 4) Recuperar quando necessario
|
|
96
108
|
|
|
97
109
|
- Acompanhe mudancas recentes com `history`
|
|
98
110
|
- Inspecione o arquivo alvo com `read_file`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weppy/roblox-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.1",
|
|
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",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weppy-roblox-mcp",
|
|
3
|
-
"description": "MCP server for Roblox Studio integration -
|
|
4
|
-
"version": "1.
|
|
3
|
+
"description": "MCP server for Roblox Studio integration - AI-powered game development with specialized agents and skills",
|
|
4
|
+
"version": "1.2.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "hope1026"
|
|
7
7
|
},
|