@bdayadev/flutter-ultra-mcp 1.11.1 → 1.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,7 +10,7 @@
10
10
  {
11
11
  "name": "flutter",
12
12
  "description": "Durable cross-platform Flutter automation via 8 specialized MCP servers, in-app mixin binding, and an optional DevTools panel. Replaces marionette_mcp and the official dart mcp-server for Claude Code.",
13
- "version": "1.11.1",
13
+ "version": "1.11.3",
14
14
  "author": {
15
15
  "name": "Bdaya-Dev",
16
16
  "url": "https://github.com/Bdaya-Dev"
@@ -23,5 +23,5 @@
23
23
  "tags": ["flutter", "dart", "mcp", "testing", "automation", "patrol", "cross-platform"]
24
24
  }
25
25
  ],
26
- "version": "1.11.1"
26
+ "version": "1.11.3"
27
27
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
3
3
  "name": "flutter",
4
- "version": "1.11.1",
4
+ "version": "1.11.3",
5
5
  "description": "Durable cross-platform Flutter automation via 8 specialized MCP servers, in-app mixin binding, and an optional DevTools panel. Replaces marionette_mcp and the official dart mcp-server for Claude Code.",
6
6
  "author": {
7
7
  "name": "Bdaya-Dev",
@@ -4,7 +4,7 @@ description: >-
4
4
  extensions (gesture, screenshot, inspector, screencast, log collection)
5
5
  for the flutter-ultra-mcp Claude Code plugin. Composable with Sentry and
6
6
  other WidgetsFlutterBinding subclasses via the mixin form.
7
- version: 1.11.1
7
+ version: 1.11.3
8
8
  homepage: https://github.com/Bdaya-Dev/flutter-ultra-mcp
9
9
  repository: https://github.com/Bdaya-Dev/flutter-ultra-mcp
10
10
  issue_tracker: https://github.com/Bdaya-Dev/flutter-ultra-mcp/issues
@@ -2,7 +2,7 @@ name: ultra_flutter_devtools
2
2
  description: >-
3
3
  Flutter DevTools extension showing live MCP activity for the flutter-ultra-mcp
4
4
  Claude Code plugin (sessions, recent tool calls, errors, screenshot grid).
5
- version: 1.11.1
5
+ version: 1.11.3
6
6
  homepage: https://github.com/Bdaya-Dev/flutter-ultra-mcp
7
7
  repository: https://github.com/Bdaya-Dev/flutter-ultra-mcp
8
8
  issue_tracker: https://github.com/Bdaya-Dev/flutter-ultra-mcp/issues
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bdayadev/flutter-ultra-mcp",
3
- "version": "1.11.1",
3
+ "version": "1.11.3",
4
4
  "description": "Flutter Ultra MCP plugin monorepo — 8 MCP servers + ultra_flutter Dart packages + skills for Claude Code.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/Bdaya-Dev/flutter-ultra-mcp",
@@ -103,15 +103,16 @@ Produce a numbered summary: steps taken, pass/fail status per step, screenshot p
103
103
 
104
104
  When launching a Flutter web app, choose the mode based on what the flow needs:
105
105
 
106
- | Mode | Command | VM Service | Hot Reload | Startup | Best for |
107
- |------|---------|-----------|-----------|---------|----------|
108
- | `chrome` (default) | `-d chrome --headless=new` | Yes (DWDS) | Yes | 60-90s | Debugging, widget inspection, evaluate, state reading |
109
- | `chrome-headed` | `-d chrome` (visible) | Yes (DWDS) | Yes | 60-90s | Local development, watching the agent work |
110
- | `web-server` | `-d web-server` | No | No | 5-10s | Visual tours, screenshots, parallel subagent runs |
106
+ | Mode | Command | VM Service | Hot Reload | Startup | Best for |
107
+ | ------------------ | -------------------------- | ---------- | ---------- | ------- | ----------------------------------------------------- |
108
+ | `chrome` (default) | `-d chrome --headless=new` | Yes (DWDS) | Yes | 60-90s | Debugging, widget inspection, evaluate, state reading |
109
+ | `chrome-headed` | `-d chrome` (visible) | Yes (DWDS) | Yes | 60-90s | Local development, watching the agent work |
110
+ | `web-server` | `-d web-server` | No | No | 5-10s | Visual tours, screenshots, parallel subagent runs |
111
111
 
112
112
  ### When to use each mode
113
113
 
114
114
  **Use `chrome` (default)** when the flow needs:
115
+
115
116
  - Widget tree inspection (`get_widget_tree`, `find_widget`)
116
117
  - Expression evaluation (`evaluate`)
117
118
  - Hot reload after code changes
@@ -119,10 +120,12 @@ When launching a Flutter web app, choose the mode based on what the flow needs:
119
120
  - Gesture tools via VM Service (`tap`, `enter_text`, `scroll_to`)
120
121
 
121
122
  **Use `chrome-headed`** when:
123
+
122
124
  - You want to visually watch the agent drive the app
123
125
  - Debugging a flow that doesn't work headless (rare)
124
126
 
125
127
  **Use `web-server`** when:
128
+
126
129
  - The flow only needs screenshots and Playwright navigation
127
130
  - Running multiple parallel app instances for subagent tours
128
131
  - Fast iteration without waiting for DWDS connection
@@ -142,6 +145,7 @@ launch_app(projectDir, target, device: "chrome", webLaunchMode: "web-server", we
142
145
  ```
143
146
 
144
147
  For web-server mode, after `poll_launch_app` shows `attached`, use browser server tools:
148
+
145
149
  - `mcp__plugin_flutter_flutter-ultra-browser__launch_browser` → navigate to `webServerUrl`
146
150
  - `mcp__plugin_flutter_flutter-ultra-browser__screenshot` for captures
147
151
  - `mcp__plugin_flutter_flutter-ultra-browser__click` / `fill` for interaction