mlgym-deploy 2.10.0 → 3.0.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/CHANGELOG-v3.0.0.md +285 -0
- package/index.js +603 -136
- package/index.js.backup-atomic +1358 -0
- package/mlgym-deploy-2.10.0.tgz +0 -0
- package/package.json +15 -7
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mlgym-deploy",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "MCP server for
|
|
3
|
+
"version": "3.0.1",
|
|
4
|
+
"description": "MCP server for MLGym - Monolithic deployment workflow with legacy user management tools restored",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -29,16 +29,24 @@
|
|
|
29
29
|
"axios": "^1.6.0"
|
|
30
30
|
},
|
|
31
31
|
"mcp": {
|
|
32
|
-
"name": "
|
|
33
|
-
"description": "Deploy applications to
|
|
32
|
+
"name": "MLGym Deploy",
|
|
33
|
+
"description": "Deploy applications to MLGym with monolithic workflows plus legacy user management",
|
|
34
34
|
"tools": [
|
|
35
|
+
{
|
|
36
|
+
"name": "mlgym_deploy",
|
|
37
|
+
"description": "Complete deployment: authenticate, analyze, create repo, and deploy in one call"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "mlgym_status",
|
|
41
|
+
"description": "Check authentication and project configuration status"
|
|
42
|
+
},
|
|
35
43
|
{
|
|
36
44
|
"name": "mlgym_user_create",
|
|
37
|
-
"description": "Create
|
|
45
|
+
"description": "Create new MLGym user account with SSH key setup"
|
|
38
46
|
},
|
|
39
47
|
{
|
|
40
|
-
"name": "
|
|
41
|
-
"description": "
|
|
48
|
+
"name": "mlgym_auth_login",
|
|
49
|
+
"description": "Login with existing credentials"
|
|
42
50
|
}
|
|
43
51
|
]
|
|
44
52
|
}
|