@insforge/install 0.0.11 → 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
@@ -11,6 +11,8 @@ npx @insforge/install --client cursor --env API_KEY=YOUR_API_KEY --env API_BASE_
11
11
  npx @insforge/install --client windsurf --env API_KEY=YOUR_API_KEY --env API_BASE_URL=http://localhost:7130
12
12
  npx @insforge/install --client cline --env API_KEY=YOUR_API_KEY --env API_BASE_URL=http://localhost:7130
13
13
  npx @insforge/install --client roocode --env API_KEY=YOUR_API_KEY --env API_BASE_URL=http://localhost:7130
14
+ npx @insforge/install --client codex --env API_KEY=YOUR_API_KEY --env API_BASE_URL=http://localhost:7130
15
+ npx @insforge/install --client trae --env API_KEY=YOUR_API_KEY --env API_BASE_URL=http://localhost:7130
14
16
 
15
17
  # With custom base URL (e.g., production server)
16
18
  npx @insforge/install --client cursor --env API_KEY=YOUR_API_KEY --env API_BASE_URL=https://api.insforge.com
@@ -54,7 +56,7 @@ npx @insforge/install --client windsurf --env API_KEY=your-api-key --env API_BAS
54
56
  The installer will:
55
57
  1. Create or update the MCP configuration file for your chosen client
56
58
  2. Add the Insforge MCP server with your API credentials
57
- 3. Configure it to run via `npx @insforge/insforge-mcp@latest`
59
+ 3. Configure it to run via `npx @insforge/mcp@latest`
58
60
 
59
61
  After installation, restart your AI client to load the Insforge MCP server.
60
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.11",
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",