File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,8 @@ async function runCli(args: Args): Promise<void> {
130
130
// Add transport flag if specified
131
131
if ( args . transport && args . transport !== "stdio" ) {
132
132
// Convert streamable-http back to http for CLI mode
133
- const cliTransport = args . transport === "streamable-http" ? "http" : args . transport ;
133
+ const cliTransport =
134
+ args . transport === "streamable-http" ? "http" : args . transport ;
134
135
cliArgs . push ( "--transport" , cliTransport ) ;
135
136
}
136
137
@@ -307,7 +308,7 @@ function parseArgs(): Args {
307
308
// Otherwise use command line arguments
308
309
const command = finalArgs [ 0 ] || "" ;
309
310
const args = finalArgs . slice ( 1 ) ;
310
-
311
+
311
312
// Map "http" shorthand to "streamable-http"
312
313
let transport = options . transport ;
313
314
if ( transport === "http" ) {
You can’t perform that action at this time.
0 commit comments