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.
- package/dist/index.js +4 -1
- 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.
|
|
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");
|