lace-mcp 0.0.2-alpha.5 → 0.0.2-alpha.6
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 +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -51,7 +51,7 @@ function getClaudeDesktopConfigPath() {
|
|
|
51
51
|
}
|
|
52
52
|
function getEditorConfigPath(target) {
|
|
53
53
|
const home = homedir();
|
|
54
|
-
if (target === "claude") return join(home, ".claude
|
|
54
|
+
if (target === "claude") return join(home, ".claude.json");
|
|
55
55
|
if (target === "claude-desktop") return getClaudeDesktopConfigPath();
|
|
56
56
|
if (target === "cursor") return join(home, ".cursor", "mcp.json");
|
|
57
57
|
return join(home, ".codex", "config.toml");
|
|
@@ -394,7 +394,7 @@ function installClaude(env, scope = "user") {
|
|
|
394
394
|
try {
|
|
395
395
|
const envFlags = Object.entries(env).map(([key, value]) => `-e ${key}=${value}`).join(" ");
|
|
396
396
|
execSync2(
|
|
397
|
-
`claude mcp add --transport stdio --scope ${scope} ${envFlags}
|
|
397
|
+
`claude mcp add lace --transport stdio --scope ${scope} ${envFlags} -- npx ${mcpArgs("claude").join(" ")}`,
|
|
398
398
|
{
|
|
399
399
|
stdio: "inherit"
|
|
400
400
|
}
|