From 7c04df5e2e5e378fc0f83307ac5d616e9574da8a Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Tue, 19 Nov 2024 14:19:59 -0800 Subject: [PATCH] fix arg passing in cli --- bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index 77d6e52..0485a30 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -19,7 +19,7 @@ console.log("Starting MCP inspector..."); const { result } = concurrently( [ { - command: `node ${inspectorServerPath}${command ? ` --env ${command}` : ""}${mcpServerArgs.length ? ` --args "${mcpServerArgs.join(" ")}"` : ""}`, + command: `node ${inspectorServerPath}${command ? ` --env ${command}` : ""}${mcpServerArgs.length ? ` --args="${mcpServerArgs.join(" ")}"` : ""}`, name: "server", }, {