@infinitedusky/indusk-mcp 1.5.11 → 1.5.12
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.
|
@@ -584,18 +584,17 @@ function printMcpInstructions(name, manifest) {
|
|
|
584
584
|
}
|
|
585
585
|
}
|
|
586
586
|
}
|
|
587
|
-
// Fallback:
|
|
587
|
+
// Fallback: no .env found or credentials incomplete
|
|
588
|
+
console.info(`\n ${name}: no credentials found at .indusk/extensions/${name}/.env`);
|
|
589
|
+
console.info(` To set up automatically:`);
|
|
590
|
+
console.info(` 1. Create .indusk/extensions/${name}/.env with the required credentials`);
|
|
591
|
+
console.info(` 2. Run 'extensions enable ${name}' again`);
|
|
588
592
|
if (server.setup_instructions?.length) {
|
|
589
|
-
console.info(
|
|
590
|
-
console.info(` Create .indusk/extensions/${name}/.env with credentials, or set up manually:`);
|
|
593
|
+
console.info(` Or set up manually:`);
|
|
591
594
|
for (const instruction of server.setup_instructions) {
|
|
592
|
-
console.info(`
|
|
595
|
+
console.info(` ${instruction}`);
|
|
593
596
|
}
|
|
594
597
|
}
|
|
595
|
-
else if (server.type === "http" && server.url) {
|
|
596
|
-
console.info(`\n ${name} MCP setup:`);
|
|
597
|
-
console.info(` claude mcp add -t http -- ${name} ${server.url}`);
|
|
598
|
-
}
|
|
599
598
|
console.info("");
|
|
600
599
|
}
|
|
601
600
|
function installSkill(projectRoot, name) {
|