@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.
Files changed (2) hide show
  1. package/dist/index.js +2 -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} -y ${envArgs} -- npx -y ${mcpVersion}`;
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));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insforge/install",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "description": "CLI tool for installing Insforge MCP servers across different AI clients",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",