We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f1d924 + dc5fa6a commit cf44b30Copy full SHA for cf44b30
client/bin/start.js
@@ -91,10 +91,10 @@ async function startProdServer(serverOptions) {
91
"node",
92
[
93
inspectorServerPath,
94
- ...(command ? [`--command`, command] : []),
95
- ...(mcpServerArgs && mcpServerArgs.length > 0
96
- ? [`--args`, mcpServerArgs.join(" ")]
97
- : []),
+ command ? `--command=${command}` : "",
+ mcpServerArgs && mcpServerArgs.length > 0
+ ? `--args=${mcpServerArgs.join(" ")}`
+ : "",
98
],
99
{
100
env: {
0 commit comments