File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.4.0
2
+
3
+ - Add support for StreamableHTTP client
4
+ - Add support for StreamableHTTP server
5
+
1
6
## 0.3.6
2
7
3
8
- Improve pub.dev points
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ Ensure you have the correct Dart SDK version installed. See <https://dart.dev/ge
16
16
## Features
17
17
18
18
- Stdio support (Server and Client)
19
- - SSE support (Server only for now)
19
+ - StreamableHTTP support (Server and Client)
20
+ - SSE support (Server only) - Deprecated
20
21
- Tools
21
22
- Resources
22
23
- Prompts
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ void main() async {
51
51
}
52
52
```
53
53
54
- ## SSE Server
54
+ ## SSE Server (Deprecated)
55
55
56
56
``` dart
57
57
import 'dart:io';
@@ -111,8 +111,4 @@ Future<void> main() async {
111
111
}
112
112
```
113
113
114
- ## More Examples
115
-
116
- - [ Stdio Server] ( server_stdio.dart )
117
- - [ Stdio Client] ( client_stdio.dart )
118
- - [ SSE Server] ( server_sse.dart )
114
+ ## [ More Examples] ( https://github.com/leehack/mcp_dart/tree/main/example )
You can’t perform that action at this time.
0 commit comments