@l4yercak3/cli 1.1.12 → 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/bin/cli.js CHANGED
@@ -16,6 +16,7 @@ const statusCommand = require('../src/commands/status');
16
16
  const spreadCommand = require('../src/commands/spread');
17
17
  const apiKeysCommand = require('../src/commands/api-keys');
18
18
  const upgradeCommand = require('../src/commands/upgrade');
19
+ const mcpServerCommand = require('../src/commands/mcp-server');
19
20
 
20
21
  // Create CLI program
21
22
  const program = new Command();
@@ -66,6 +67,11 @@ program
66
67
  .description(upgradeCommand.description)
67
68
  .action(upgradeCommand.handler);
68
69
 
70
+ program
71
+ .command(mcpServerCommand.command)
72
+ .description(mcpServerCommand.description)
73
+ .action(mcpServerCommand.handler);
74
+
69
75
  // Show logo and welcome message if no command provided
70
76
  if (process.argv.length === 2) {
71
77
  console.log(''); // initial spacing