Skip to content

Commit d69d67c

Browse files
committed
Fix server args
1 parent 7792070 commit d69d67c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async function main() {
4949
[
5050
inspectorServerPath,
5151
...(command ? [`--env`, command] : []),
52-
...(mcpServerArgs ?? []),
52+
...(mcpServerArgs ? ["--args", mcpServerArgs.join(" ")] : []),
5353
],
5454
{ env: { PORT: SERVER_PORT }, signal: abort.signal },
5555
);

0 commit comments

Comments
 (0)