@insforge/install 0.0.12 → 0.0.13

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/README.md CHANGED
@@ -56,7 +56,7 @@ npx @insforge/install --client windsurf --env API_KEY=your-api-key --env API_BAS
56
56
  The installer will:
57
57
  1. Create or update the MCP configuration file for your chosen client
58
58
  2. Add the Insforge MCP server with your API credentials
59
- 3. Configure it to run via `npx @insforge/insforge-mcp@latest`
59
+ 3. Configure it to run via `npx @insforge/mcp@latest`
60
60
 
61
61
  After installation, restart your AI client to load the Insforge MCP server.
62
62
 
package/dist/index.js CHANGED
@@ -80,7 +80,7 @@ import {
80
80
  }
81
81
 
82
82
  // Now add the MCP server
83
- const command = `claude mcp add ${name} ${envArgs} -- npx -y @insforge/insforge-mcp@latest`;
83
+ const command = `claude mcp add ${name} ${envArgs} -- npx -y @insforge/mcp@latest`;
84
84
  logger.info("Adding insforge MCP server...");
85
85
  execSync(command, {
86
86
  stdio: 'inherit',
@@ -113,7 +113,7 @@ import {
113
113
  }
114
114
 
115
115
  // Now add the MCP server using codex CLI with --env flags
116
- const command = `codex mcp add ${name} ${envArgs} -- npx -y @insforge/insforge-mcp@latest`;
116
+ const command = `codex mcp add ${name} ${envArgs} -- npx -y @insforge/mcp@latest`;
117
117
  logger.info("Adding insforge MCP server...");
118
118
  execSync(command, {
119
119
  stdio: 'inherit',
@@ -127,7 +127,7 @@ import {
127
127
  if (!config.mcpServers) config.mcpServers = {};
128
128
  config.mcpServers[name] = {
129
129
  command: "npx",
130
- args: ["-y", "@insforge/insforge-mcp@latest"],
130
+ args: ["-y", "@insforge/mcp@latest"],
131
131
  env: {
132
132
  API_KEY: envVars.API_KEY,
133
133
  API_BASE_URL: envVars.API_BASE_URL
@@ -138,7 +138,7 @@ import {
138
138
  if (!config.mcpServers) config.mcpServers = {};
139
139
  config.mcpServers[name] = {
140
140
  command: "npx",
141
- args: ["-y", "@insforge/insforge-mcp@latest"],
141
+ args: ["-y", "@insforge/mcp@latest"],
142
142
  env: {
143
143
  API_KEY: envVars.API_KEY,
144
144
  API_BASE_URL: envVars.API_BASE_URL
@@ -149,7 +149,7 @@ import {
149
149
  if (!config.mcpServers) config.mcpServers = {};
150
150
  config.mcpServers[name] = {
151
151
  command: "npx",
152
- args: ["-y", "@insforge/insforge-mcp@latest"],
152
+ args: ["-y", "@insforge/mcp@latest"],
153
153
  env: {
154
154
  API_KEY: envVars.API_KEY,
155
155
  API_BASE_URL: envVars.API_BASE_URL
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insforge/install",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "CLI tool for installing Insforge MCP servers across different AI clients",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",