Skip to content

Commit c446518

Browse files
authored
prep dart_mcp for release (#54)
1 parent 372264c commit c446518

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

pkgs/dart_mcp/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.1.0-wip
1+
## 0.1.0
22

33
- Initial release, supports all major MCP functionality for both clients and
44
servers, at protocol version 2024-11-05.

pkgs/dart_mcp/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
A Dart package for making MCP servers and clients.
22

3+
**Note**: This package is still experimental and is likely to evolve quickly.
4+
35
## Implementing Servers
46

57
To implement a server, import `package:dart_mcp/server.dart` and extend the
@@ -39,7 +41,9 @@ doc comments explaining how to use it - some may require you to provide
3941
implementations of methods, while others may just expose new methods that you
4042
can call.
4143

42-
See the [client example](example/client.dart) for some example code.
44+
See the [client example](example/client.dart) for some basic example code, or
45+
the [dash client](example/dash_client.dart) for a more full featured client
46+
using Gemini.
4347

4448
### Connecting to Servers
4549

pkgs/dart_mcp/pubspec.yaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
name: dart_mcp
22
description: A package for making MCP servers and clients.
3-
version: 0.1.0-wip
3+
repository: https://github.com/dart-lang/ai/tree/main/pkgs/dart_mcp
4+
version: 0.1.0
45
environment:
5-
sdk: ^3.7.0 # The version of dart in the current flutter stable
6+
sdk: ^3.7.0
67
dependencies:
78
async: ^2.13.0
89
collection: ^1.19.1
910
json_rpc_2: ^3.0.3
1011
meta: ^1.16.0
1112
stream_channel: ^2.1.4
12-
executables:
13-
dart_mcp_server: server
1413
dev_dependencies:
1514
args: ^2.7.0
1615
dart_flutter_team_lints: ^3.2.1

0 commit comments

Comments
 (0)