@insforge/install 0.0.23 → 0.0.25
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -87,7 +87,7 @@ import {
|
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
// Now add the MCP server
|
|
90
|
-
const command = `"${claudePath}" mcp add ${name}
|
|
90
|
+
const command = `"${claudePath}" mcp add ${name} ${envArgs} -- npx -y ${mcpVersion}`;
|
|
91
91
|
logger.info(`Adding insforge MCP server (${mcpVersion})...`);
|
|
92
92
|
execSync(command, {
|
|
93
93
|
stdio: 'inherit',
|
|
@@ -163,7 +163,7 @@ import {
|
|
|
163
163
|
}
|
|
164
164
|
};
|
|
165
165
|
writeConfig(config, argv.client);
|
|
166
|
-
|
|
166
|
+
}
|
|
167
167
|
logger.box(green(`Successfully installed Insforge MCP server in ${argv.client}.`));
|
|
168
168
|
} catch (e) {
|
|
169
169
|
logger.error(red(e.message));
|