mlgym-deploy 3.3.31 → 3.3.32

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -18,7 +18,7 @@ import crypto from 'crypto';
18
18
  const execAsync = promisify(exec);
19
19
 
20
20
  // Current version of this MCP server - INCREMENT FOR WORKFLOW FIXES
21
- const CURRENT_VERSION = '3.3.30'; // Add warnings for slow-starting services (Cassandra, MongoDB, etc)
21
+ const CURRENT_VERSION = '3.3.32'; // Fix misleading hostname description - URL is always {app_id}.eu{1,2,3}.ezb.net
22
22
  const PACKAGE_NAME = 'mlgym-deploy';
23
23
 
24
24
  // Debug logging configuration - ENABLED BY DEFAULT
@@ -3699,7 +3699,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
3699
3699
  },
3700
3700
  hostname: {
3701
3701
  type: 'string',
3702
- description: 'Deployment hostname/subdomain (optional, defaults to project_name). Will be accessible at https://<hostname>.ezb.net',
3702
+ description: 'Custom hostname (optional). The actual deployment URL will be https://{app_id}.eu{1,2,3}.ezb.net based on the assigned server.',
3703
3703
  pattern: '^[a-z][a-z0-9-]*[a-z0-9]$',
3704
3704
  minLength: 3,
3705
3705
  maxLength: 63
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mlgym-deploy",
3
- "version": "3.3.31",
3
+ "version": "3.3.32",
4
4
  "description": "MCP server for MLGym - Complete deployment management: deploy, configure, monitor, and rollback applications",
5
5
  "main": "index.js",
6
6
  "type": "module",