@weppy/roblox-mcp 1.4.0 → 1.4.2
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/.gitattributes +1 -0
- package/CHANGELOG.md +23 -0
- package/docs/assets/screenshots/roblox-explorer/roblox-explorer-screen.png +2 -2
- package/docs/assets/screenshots/sync.png +2 -2
- package/package.json +1 -1
- package/plugins/weppy-roblox-mcp/.claude-plugin/plugin.json +1 -1
- package/plugins/weppy-roblox-mcp/dist/index.js +58 -58
- package/smithery.yaml +1 -1
|
@@ -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.4.
|
|
9
|
+
"version": "1.4.2"
|
|
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.4.
|
|
16
|
+
"version": "1.4.2",
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "hope1026"
|
|
19
19
|
},
|
package/.gitattributes
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
plugins/weppy-roblox-mcp/dist/index.js -linguist-generated -linguist-vendored
|
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,29 @@ All notable changes to this project will be documented in this file.
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## [1.4.2] - 2026-03-11
|
|
12
|
+
|
|
13
|
+
### Improved
|
|
14
|
+
|
|
15
|
+
- MCP server code refactoring for better maintainability
|
|
16
|
+
- Enhanced license check logic for improved reliability
|
|
17
|
+
- Plugin internal stability improvements
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [1.4.1] - 2026-03-10
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Simplify authentication flow — legacy auth paths removed for improved connection reliability
|
|
25
|
+
|
|
26
|
+
### Improved
|
|
27
|
+
|
|
28
|
+
- MCP server internal stability and observability improvements
|
|
29
|
+
- Plugin internal cleanup and configuration refinements
|
|
30
|
+
|
|
31
|
+
|
|
9
32
|
## [1.4.0] - 2026-03-08
|
|
10
33
|
|
|
11
34
|
### New Features
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
version https://git-lfs.github.com/spec/v1
|
|
2
|
-
oid sha256:
|
|
3
|
-
size
|
|
2
|
+
oid sha256:49907d0b95043891b1756a708e096c611d7fb39b1ce03bc3c70d9acc3228676b
|
|
3
|
+
size 708914
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
version https://git-lfs.github.com/spec/v1
|
|
2
|
-
oid sha256:
|
|
3
|
-
size
|
|
2
|
+
oid sha256:29980b419b1f0cd11500ebcdb3dfe21b9b02b2aba5910e98f20d39a3ec33b484
|
|
3
|
+
size 825060
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weppy/roblox-mcp",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
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",
|