From 295ccac27e7b224862f66857d17f8a9329eb193a Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Wed, 27 Nov 2024 19:12:35 -0500 Subject: [PATCH] fix arg passing --- bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index ac4a4c1..2dcc613 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -49,7 +49,7 @@ async function main() { [ inspectorServerPath, ...(command ? [`--env`, command] : []), - ...(mcpServerArgs ? ["--args", mcpServerArgs.join(" ")] : []), + ...(mcpServerArgs ? [`--args=${mcpServerArgs.join(" ")}`] : []), ], { env: { ...process.env, PORT: SERVER_PORT },