@danainnovations/cortex-mcp 1.0.90 → 1.0.92

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/index.js CHANGED
@@ -1602,8 +1602,12 @@ function configureClient(clientType, serverUrl, apiKey, mcps) {
1602
1602
  return `Claude Desktop configured (${path})`;
1603
1603
  }
1604
1604
  case "claude-code":
1605
- configureClaudeCode(serverUrl, apiKey, mcps);
1606
- return "Claude Code configured";
1605
+ try {
1606
+ configureClaudeCode(serverUrl, apiKey, mcps);
1607
+ return "Claude Code configured";
1608
+ } catch {
1609
+ return "Claude Code \u2014 skipped (Cortex is already available via Claude Desktop config)";
1610
+ }
1607
1611
  case "cursor":
1608
1612
  configureCursor(serverUrl, apiKey, mcps);
1609
1613
  return "Cursor configured";