Skip to content

Commit 7c04df5

Browse files
committed
fix arg passing in cli
1 parent b97acb9 commit 7c04df5

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
@@ -19,7 +19,7 @@ console.log("Starting MCP inspector...");
1919
const { result } = concurrently(
2020
[
2121
{
22-
command: `node ${inspectorServerPath}${command ? ` --env ${command}` : ""}${mcpServerArgs.length ? ` --args "${mcpServerArgs.join(" ")}"` : ""}`,
22+
command: `node ${inspectorServerPath}${command ? ` --env ${command}` : ""}${mcpServerArgs.length ? ` --args="${mcpServerArgs.join(" ")}"` : ""}`,
2323
name: "server",
2424
},
2525
{

0 commit comments

Comments
 (0)