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
This release brings support for the latest MCP protocol version along with enhanced schema generation, new transport capabilities, and streamlined APIs.
@@ -49,6 +57,7 @@ This release brings support for the latest MCP protocol version along with enhan
49
57
resourceSubscribe: true
50
58
))
51
59
60
+
52
61
```
53
62
**After:**
54
63
@@ -60,6 +69,7 @@ This release brings support for the latest MCP protocol version along with enhan
60
69
resourcesSubscribe: true
61
70
))
62
71
72
+
63
73
```
64
74
#### Transport Upgrade (Optional)
65
75
@@ -70,12 +80,14 @@ For production HTTP deployments, consider upgrading to the new `StreamableHttpSe
70
80
```php
71
81
$transport = new HttpServerTransport(host: '127.0.0.1', port: 8080);
72
82
83
+
73
84
```
74
85
**After:**
75
86
76
87
```php
77
88
$transport = new StreamableHttpServerTransport(host: '127.0.0.1', port: 8080);
78
89
90
+
79
91
```
80
92
### 📚 Documentation
81
93
@@ -254,6 +266,7 @@ This is a major refactoring with significant breaking changes:
254
266
255
267
256
268
269
+
257
270
```
258
271
The `http` and `reactphp` options for `run()` were already invalid and are fully removed.
0 commit comments