From d69d67cb645bea35b29fefe575e67c00a102dc3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=C3=AFs=20Betts?= Date: Tue, 26 Nov 2024 17:33:22 +0100 Subject: [PATCH] Fix server args --- bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index 55caefd..7fa2c11 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -49,7 +49,7 @@ async function main() { [ inspectorServerPath, ...(command ? [`--env`, command] : []), - ...(mcpServerArgs ?? []), + ...(mcpServerArgs ? ["--args", mcpServerArgs.join(" ")] : []), ], { env: { PORT: SERVER_PORT }, signal: abort.signal }, );