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.
1 parent 567c15a commit a16649bCopy full SHA for a16649b
server/src/index.ts
@@ -23,7 +23,7 @@ const createTransport = async (query: express.Request["query"]) => {
23
24
if (transportType === "stdio") {
25
const command = query.command as string;
26
- const args = (query.args as string).split(",");
+ const args = (query.args as string).split(/\s+/);
27
console.log(`Stdio transport: command=${command}, args=${args}`);
28
const transport = new StdioClientTransport({ command, args });
29
await transport.start();
0 commit comments