flutter_copilot_claw 1.0.5 copy "flutter_copilot_claw: ^1.0.5" to clipboard
flutter_copilot_claw: ^1.0.5 copied to clipboard

Flutter runtime binding for AI-driven app inspection and interaction via Flutter Copilot.

flutter_copilot_claw #

License flutter_copilot_claw pub.dev badge flutter_copilot_mcp pub.dev badge flutter_copilot_cli npm badge

flutter_copilot_claw is the Flutter-side mounting plugin for Flutter Copilot.

It runs inside your Flutter app and registers the VM Service extensions used by flutter_copilot_mcp.

Start with flutter_copilot_mcp #

The core product is flutter_copilot_mcp.

Complete documentation, installation steps, MCP tool list, Cursor setup, and Claude Code setup are all in flutter_copilot_mcp.

What this package does #

flutter_copilot_claw only handles the in-app side:

  • mounts Flutter Copilot inside your Flutter app
  • registers Flutter Copilot VM Service extensions
  • exposes runtime hooks used by the MCP server

If you want the full workflow, quick start, and tool overview, use flutter_copilot_mcp.

One-line minimal setup #

FlutterCopilotBinding.ensureInitialized();

Typical usage in main.dart:

import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_copilot_claw/flutter_copilot_claw.dart';

void main() {
  if (kDebugMode) {
    FlutterCopilotBinding.ensureInitialized();
  } else {
    WidgetsFlutterBinding.ensureInitialized();
  }

  runApp(const MyApp());
}

If you also want log capture and uncaught error capture:

FlutterCopilotBinding.runAppWithConfig(const MyApp());

Looking for the real docs? #

All complete docs, installation, and MCP tools are documented in flutter_copilot_mcp.

License #

Apache License 2.0

0
likes
155
points
265
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Flutter runtime binding for AI-driven app inspection and interaction via Flutter Copilot.

Repository (GitHub)

Topics

#flutter #mcp #ai #flutter-copilot #copilot

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on flutter_copilot_claw