@danainnovations/cortex-mcp 1.0.122 → 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 +6 -0
- 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/cli.js
CHANGED
|
@@ -1824,6 +1824,12 @@ function detectClients() {
|
|
|
1824
1824
|
execSync(whichCmd, { stdio: "pipe" });
|
|
1825
1825
|
claudeCodeDetected = true;
|
|
1826
1826
|
} catch {
|
|
1827
|
+
const commonPaths = [
|
|
1828
|
+
join(homedir(), ".local", "bin", "claude"),
|
|
1829
|
+
"/usr/local/bin/claude",
|
|
1830
|
+
"/opt/homebrew/bin/claude"
|
|
1831
|
+
];
|
|
1832
|
+
claudeCodeDetected = commonPaths.some((p) => existsSync(p));
|
|
1827
1833
|
}
|
|
1828
1834
|
clients.push({
|
|
1829
1835
|
type: "claude-code",
|