Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkgs/dart_mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 0.3.4-wip

- Update the tool calling example to include progress notifications.
- Remove a reference to "screenshot" for a generic error that occurs for more
than just screenshots.

## 0.3.3

Expand Down
4 changes: 1 addition & 3 deletions pkgs/dart_mcp_server/lib/src/mixins/dtd.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1031,9 +1031,7 @@ base mixin DartToolingDaemonSupport
)..failureReason = CallToolFailureReason.dtdAlreadyConnected;

static final _noActiveDebugSession = CallToolResult(
content: [
TextContent(text: 'No active debug session to take a screenshot'),
],
content: [TextContent(text: 'No active debug session.')],
isError: true,
)..failureReason = CallToolFailureReason.noActiveDebugSession;

Expand Down
Loading