@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 +1 -1
- package/dist/index.js +5 -5
- package/package.json +1 -1
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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
|