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> {
130130 // Add transport flag if specified
131131 if ( args . transport && args . transport !== "stdio" ) {
132132 // 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 ;
134135 cliArgs . push ( "--transport" , cliTransport ) ;
135136 }
136137
@@ -307,7 +308,7 @@ function parseArgs(): Args {
307308 // Otherwise use command line arguments
308309 const command = finalArgs [ 0 ] || "" ;
309310 const args = finalArgs . slice ( 1 ) ;
310-
311+
311312 // Map "http" shorthand to "streamable-http"
312313 let transport = options . transport ;
313314 if ( transport === "http" ) {
You can’t perform that action at this time.
0 commit comments