@danainnovations/cortex-mcp 1.0.91 → 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/cli.js +21 -9
- package/dist/cli.js.map +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
1606
|
-
|
|
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";
|