@@ -113,7 +113,7 @@ export class StreamableHTTPServerTransport implements Transport {
113
113
"Content-Type" : "text/event-stream" ,
114
114
"Cache-Control" : "no-cache" ,
115
115
Connection : "keep-alive" ,
116
- "Mcp-Session-Id " : this . _sessionId ,
116
+ "mcp-session-id " : this . _sessionId ,
117
117
} ) ;
118
118
119
119
const connection : StreamConnection = {
@@ -214,7 +214,7 @@ export class StreamableHTTPServerTransport implements Transport {
214
214
"Content-Type" : "text/event-stream" ,
215
215
"Cache-Control" : "no-cache" ,
216
216
Connection : "keep-alive" ,
217
- "Mcp-Session-Id " : this . _sessionId ,
217
+ "mcp-session-id " : this . _sessionId ,
218
218
} ) ;
219
219
220
220
const connectionId = randomUUID ( ) ;
@@ -249,7 +249,7 @@ export class StreamableHTTPServerTransport implements Transport {
249
249
// use direct JSON response
250
250
res . writeHead ( 200 , {
251
251
"Content-Type" : "application/json" ,
252
- "Mcp-Session-Id " : this . _sessionId ,
252
+ "mcp-session-id " : this . _sessionId ,
253
253
} ) ;
254
254
255
255
// handle each message
0 commit comments