You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -312,8 +333,33 @@ const server = new MCPServer({
312
333
313
334
The HTTP Stream transport supports two response modes:
314
335
315
-
1.**Stream Mode** (Default): All responses are sent over a persistent SSE connection. This is ideal for real-time applications.
316
-
2.**Batch Mode**: Responses are collected and sent as a single JSON-RPC response. This is suitable for traditional REST-like integrations.
336
+
1. **Batch Mode** (Default): Responses are collected and sent as a single JSON-RPC response. This is suitable for typical request-response patterns and is more efficient for most use cases.
337
+
338
+
2. **Stream Mode**: All responses are sent over a persistent SSE connection opened foreach request. This is ideal for long-running operations or when the server needs to send multiple messagesin response to a single request.
339
+
340
+
You can configure the response mode based on your specific needs:
0 commit comments