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
Creates a new very good project in the specified directory.
217
-
mcp Start the MCP (Model Context Protocol) server.
217
+
mcp Start the MCP (Model Context Protocol) server. WARNING: This is an experimental package and may change or become unstable without notice. Use it with caution at your own risk.
Copy file name to clipboardExpand all lines: lib/src/mcp/mcp_command.dart
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,8 @@ class MCPCommand extends Command<int> {
40
40
staticconstString commandName ='mcp';
41
41
42
42
@override
43
-
Stringget description =>'Start the MCP (Model Context Protocol) server.';
43
+
Stringget description =>'''
44
+
Start the MCP (Model Context Protocol) server. WARNING: This is an experimental package and may change or become unstable without notice. Use it with caution at your own risk.''';
Creates a new very good project in the specified directory.
163
-
mcp Start the MCP (Model Context Protocol) server.
163
+
mcp Start the MCP (Model Context Protocol) server. WARNING: This is an experimental package and may change or become unstable without notice. Use it with caution at your own risk.
''' Creates a new very good project in the specified directory.\n''',
40
40
' dart Command for running dart related commands.\n',
41
-
' mcp Start the MCP (Model Context Protocol) server.\n',
41
+
' mcp Start the MCP (Model Context Protocol) server. WARNING: This is an experimental package and may change or become unstable without notice. Use it with caution at your own risk.\n',
42
42
' packages Command for managing packages.\n',
43
43
' test Run `flutter test` in a project. (Check very_good dart test for running `dart test` instead.)\n',
Copy file name to clipboardExpand all lines: test/src/mcp/mcp_command_test.dart
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -83,8 +83,8 @@ void main() {
83
83
);
84
84
expect(
85
85
command.description,
86
-
'Start the MCP '
87
-
'(Model Context Protocol) server.',
86
+
'''
87
+
Start the MCP (Model Context Protocol) server. WARNING: This is an experimental package and may change or become unstable without notice. Use it with caution at your own risk.''',
0 commit comments