terminator-mcp-agent 0.6.13 → 0.6.14

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/index.js +4 -1
  2. package/package.json +5 -5
package/index.js CHANGED
@@ -128,6 +128,7 @@ if (argv.includes("--add-to-app")) {
128
128
 
129
129
  process.stdin.pipe(child.stdin);
130
130
  child.stdout.pipe(process.stdout);
131
+ child.stderr.pipe(process.stderr);
131
132
 
132
133
  function killProcess(proc) {
133
134
  if (!proc) return;
@@ -173,7 +174,9 @@ if (argv.includes("--add-to-app")) {
173
174
  process.on("exit", shutdown);
174
175
 
175
176
  child.on("exit", (code) => {
176
- console.log(`[MCP exited with code ${code}]`);
177
+ if (code !== 0) {
178
+ console.error(`[MCP exited with code ${code}]`);
179
+ }
177
180
  process.exit(code);
178
181
  });
179
182
  }
package/package.json CHANGED
@@ -12,10 +12,10 @@
12
12
  ],
13
13
  "name": "terminator-mcp-agent",
14
14
  "optionalDependencies": {
15
- "terminator-mcp-darwin-arm64": "0.6.13",
16
- "terminator-mcp-darwin-x64": "0.6.13",
17
- "terminator-mcp-linux-x64-gnu": "0.6.13",
18
- "terminator-mcp-win32-x64-msvc": "0.6.13"
15
+ "terminator-mcp-darwin-arm64": "0.6.14",
16
+ "terminator-mcp-darwin-x64": "0.6.14",
17
+ "terminator-mcp-linux-x64-gnu": "0.6.14",
18
+ "terminator-mcp-win32-x64-msvc": "0.6.14"
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",
@@ -27,5 +27,5 @@
27
27
  "sync-version": "node ./utils/sync-version.js",
28
28
  "update-badges": "node ./utils/update-badges.js"
29
29
  },
30
- "version": "0.6.13"
30
+ "version": "0.6.14"
31
31
  }