nuwax-mcp-stdio-proxy 1.2.0 → 1.2.1

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 +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -23017,6 +23017,9 @@ var CustomStdioClientTransport = class {
23017
23017
  }
23018
23018
  if (isWindows && (command.toLowerCase().endsWith(".cmd") || command.toLowerCase().endsWith(".bat"))) {
23019
23019
  useShell = true;
23020
+ if (command.includes(" ")) {
23021
+ command = `"${command}"`;
23022
+ }
23020
23023
  logDebug(`Using shell: true for ${command}`);
23021
23024
  }
23022
23025
  this._process = spawn(command, this._serverParams.args ?? [], {
@@ -23231,7 +23234,7 @@ async function connectBridge(id, entry) {
23231
23234
 
23232
23235
  // src/index.ts
23233
23236
  var PKG_NAME = "nuwax-mcp-stdio-proxy";
23234
- var PKG_VERSION = "1.2.0";
23237
+ var PKG_VERSION = "1.2.1";
23235
23238
  function parseConfig() {
23236
23239
  const args = process.argv.slice(2);
23237
23240
  const idx = args.indexOf("--config");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuwax-mcp-stdio-proxy",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "TypeScript stdio MCP proxy — aggregates multiple MCP servers (stdio + bridge) into one",
5
5
  "type": "module",
6
6
  "bin": {