@lanonasis/cli 3.9.9 → 3.9.10
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/dist/commands/config.js +1 -1
- package/package.json +1 -1
package/dist/commands/config.js
CHANGED
|
@@ -520,7 +520,7 @@ export function configCommands(program) {
|
|
|
520
520
|
// const mcpServerPath = config.get<string>('mcpServerPath');
|
|
521
521
|
const mcpServerUrl = config.get('mcpServerUrl');
|
|
522
522
|
if (mcpPreference) {
|
|
523
|
-
if (['local', 'remote', 'auto'].includes(mcpPreference)) {
|
|
523
|
+
if (['local', 'remote', 'websocket', 'auto'].includes(mcpPreference)) {
|
|
524
524
|
console.log(chalk.green(` ✓ MCP preference: ${mcpPreference}`));
|
|
525
525
|
validation.mcpConfigValid = true;
|
|
526
526
|
}
|
package/package.json
CHANGED