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
HTTP SSE transport and related configuration are deprecated with forRemoval=true to steer new projects toward STREAMABLE. Update EN/CN docs and llms files with consistent migration guidance.
Co-authored-by: Cursor <cursoragent@cursor.com>
| `streamable.port` | HTTP port for STREAMABLE mode | `8080` |
249
249
250
250
### Profile-based Configuration
251
251
@@ -294,7 +294,7 @@ The SDK creates **one instance per component class** (no-arg constructor) and re
294
294
This project builds on the official [MCP Java SDK](https://github.com/modelcontextprotocol/java-sdk) **2.0.0-M3**, a **pre-release milestone**. APIs may change before 2.0 GA — pin dependency versions and re-run tests when upgrading.
295
295
296
296
- **STREAMABLE** is the recommended HTTP transport for new projects.
297
-
- **SSE** is still supported for compatibility but is **deprecated** in MCP SDK 2.x; avoid new SSE deployments.
297
+
- **SSE** (`ServerMode.SSE`, `McpSseServer`, `McpServerSSE`, `sse.*` in YAML) is **deprecated with `forRemoval = true` since 0.16.0** and scheduled for removal in a future release. Existing deployments may still use it for compatibility; migrate to **STREAMABLE** (`McpStreamableServer`, `streamable.*`).
298
298
299
299
### Multilingual Support (i18n)
300
300
@@ -410,7 +410,7 @@ Run the test suite:
410
410
**A:**
411
411
- **STDIO**: For CLI tools and local development
412
412
- **STREAMABLE**: For web applications and production deployments (recommended)
413
-
- **SSE**: Deprecated, use STREAMABLE instead
413
+
- **SSE**: Deprecated since 0.16.0 (`forRemoval`); use STREAMABLE and `streamable.*` instead of `sse.*`
0 commit comments