What problem does it solve? Setting up Flutter integration testing requires coordinating pubspec dependencies, driver extensions, widget keys, and host driver scripts, and manually translating exploratory UI interactions into repeatable automated tests is error-prone. ## Core Features & Use Cases - Project Setup: Adds integration_test and flutter_test dependencies, enables the Flutter Driver extension, and guides adding ValueKeys to target widgets. - MCP-Based Exploration: Uses Dart/Flutter MCP tools (launch_app, get_widget_tree, tap, enter_text, scroll) to interactively discover and validate user flows before writing tests. - Test Authoring & Execution: Generates integration_test/ test files with WidgetTester APIs and test_driver/ host scripts, then runs them via flutter drive on Chrome, web-server, Android, or Firebase Test Lab. - Use Case: After building a login screen, launch the app via MCP, tap through the flow interactively, then convert those exact actions into a permanent app_test.dart that runs in CI. ## Quick Start Set up integration testing in my Flutter project and turn my login flow into an automated test.