mlgym-deploy 2.3.5 → 2.3.6
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/index.js +17 -17
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import crypto from 'crypto';
|
|
|
17
17
|
const execAsync = promisify(exec);
|
|
18
18
|
|
|
19
19
|
// Current version of this MCP server
|
|
20
|
-
const CURRENT_VERSION = '2.3.
|
|
20
|
+
const CURRENT_VERSION = '2.3.6';
|
|
21
21
|
const PACKAGE_NAME = 'mlgym-deploy';
|
|
22
22
|
|
|
23
23
|
// Version check state
|
|
@@ -1236,28 +1236,28 @@ A newer version of MLGym MCP Server is available!
|
|
|
1236
1236
|
Current version: ${CURRENT_VERSION}
|
|
1237
1237
|
Latest version: ${versionCheckResult.latest}
|
|
1238
1238
|
|
|
1239
|
-
The MCP server
|
|
1239
|
+
⚠️ The MCP server needs to be updated before you can continue.
|
|
1240
1240
|
|
|
1241
|
-
|
|
1241
|
+
OPTION 1: **UPDATE NOW (Strongly Recommended)**
|
|
1242
|
+
─────────────────────────────────────────────
|
|
1243
|
+
Open a new terminal in Cursor (Cmd/Ctrl + Shift + \`) and run:
|
|
1242
1244
|
|
|
1243
|
-
1. **UPDATE NOW (Recommended)**
|
|
1244
|
-
Open a new terminal in Cursor and run:
|
|
1245
|
-
\`\`\`bash
|
|
1246
1245
|
npm install -g ${PACKAGE_NAME}@latest
|
|
1247
|
-
\`\`\`
|
|
1248
|
-
Then restart Cursor to use the updated MCP server.
|
|
1249
1246
|
|
|
1250
|
-
|
|
1251
|
-
If you need to continue without updating, use the special tool:
|
|
1252
|
-
\`mlgym_update_acknowledge\`
|
|
1247
|
+
Then restart Cursor to use the updated MCP server.
|
|
1253
1248
|
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
- Deployment failures
|
|
1249
|
+
OPTION 2: **ACKNOWLEDGE AND CONTINUE AT YOUR OWN RISK**
|
|
1250
|
+
────────────────────────────────────────────────────────
|
|
1251
|
+
If you absolutely need to continue without updating, you can
|
|
1252
|
+
acknowledge this warning by using the tool: mlgym_update_acknowledge
|
|
1259
1253
|
|
|
1260
|
-
|
|
1254
|
+
⚠️ WARNING: Using an outdated version may cause:
|
|
1255
|
+
• Missing features and functionality
|
|
1256
|
+
• Compatibility issues with the backend
|
|
1257
|
+
• Unexpected errors during deployment
|
|
1258
|
+
• Failed project initializations
|
|
1259
|
+
|
|
1260
|
+
📌 Note: This message will appear for EVERY tool until you update or acknowledge.`
|
|
1261
1261
|
}
|
|
1262
1262
|
]
|
|
1263
1263
|
};
|