@danainnovations/cortex-mcp 1.0.121 → 1.0.123
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 +55 -35
- package/dist/cli.js.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1394,6 +1394,12 @@ function detectClients() {
|
|
|
1394
1394
|
execSync2(whichCmd, { stdio: "pipe" });
|
|
1395
1395
|
claudeCodeDetected = true;
|
|
1396
1396
|
} catch {
|
|
1397
|
+
const commonPaths = [
|
|
1398
|
+
join4(homedir2(), ".local", "bin", "claude"),
|
|
1399
|
+
"/usr/local/bin/claude",
|
|
1400
|
+
"/opt/homebrew/bin/claude"
|
|
1401
|
+
];
|
|
1402
|
+
claudeCodeDetected = commonPaths.some((p) => existsSync3(p));
|
|
1397
1403
|
}
|
|
1398
1404
|
clients.push({
|
|
1399
1405
|
type: "claude-code",
|