Skip to content

Commit 33689db

Browse files
committed
updated streamble http readme
1 parent 3da0850 commit 33689db

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ It supports:
3030

3131
* Federation across multiple MCP and REST services
3232
* Virtualization of legacy APIs as MCP-compliant tools and servers
33-
* Transport over HTTP, JSON-RPC, WebSocket, SSE, and stdio
33+
* Transport over HTTP, JSON-RPC, WebSocket, SSE, stdio and streamable-HTTP
3434
* A live Admin UI for real-time management and configuration
3535
* Built-in auth, observability, retries, and rate-limiting
3636
* Scalable deployments via Docker or PyPI, Redis-backed caching, and multi-cluster federation
@@ -688,11 +688,13 @@ You can get started by copying the provided [.env.example](.env.example) to `.en
688688

689689
### Transport
690690

691-
| Setting | Description | Default | Options |
692-
| ------------------------- | ---------------------- | ------- | ------------------------------- |
693-
| `TRANSPORT_TYPE` | Enabled transports | `all` | `http`,`ws`,`sse`,`stdio`,`all` |
694-
| `WEBSOCKET_PING_INTERVAL` | WebSocket ping (secs) | `30` | int > 0 |
695-
| `SSE_RETRY_TIMEOUT` | SSE retry timeout (ms) | `5000` | int > 0 |
691+
| Setting | Description | Default | Options |
692+
| ------------------------- | ---------------------------------- | ------- | ------------------------------- |
693+
| `TRANSPORT_TYPE` | Enabled transports | `all` | `http`,`ws`,`sse`,`stdio`,`all` |
694+
| `WEBSOCKET_PING_INTERVAL` | WebSocket ping (secs) | `30` | int > 0 |
695+
| `SSE_RETRY_TIMEOUT` | SSE retry timeout (ms) | `5000` | int > 0 |
696+
| `USE_STATEFUL_SESSIONS` | streamable http config | `false` | bool |
697+
| `JSON_RESPONSE_ENABLED` | json/sse streams (streamable http) | `true` | bool |
696698

697699
### Federation
698700

mcpgateway/transports/streamablehttp_transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ async def start(self) -> None:
250250
"""
251251
Starts the Streamable HTTP session manager context.
252252
"""
253-
logger.info("Starting Streamable HTTP Session Manager...")
253+
logger.info("Initializing Streamable HTTP service")
254254
await self.stack.enter_async_context(self.session_manager.run())
255255

256256
async def shutdown(self) -> None:

0 commit comments

Comments
 (0)