MCPHub LabRegistryVeryGoodOpenSource/very_good_ai_flutter_plugin
VeryGoodOpenSource

VeryGoodOpenSource/very_good_ai_flutter_plugin

Built by VeryGoodOpenSource 71 stars

What is VeryGoodOpenSource/very_good_ai_flutter_plugin?

A high-performance MCP server implementation for VeryGoodOpenSource/very_good_ai_flutter_plugin that bridges the gap between the Model Context Protocol and external services. It allows Large Language Models to interact with your data and tools with low latency and native support.

How to use VeryGoodOpenSource/very_good_ai_flutter_plugin?

1. Ensure you have an MCP-compatible client (like Claude Desktop) installed. 2. Configure your server with: npx @modelcontextprotocol/VeryGoodOpenSource/very_good_ai_flutter_plugin 3. Restart your client and verify the new tools are available in the system catalog.
🛡️ Scoped (Restricted)
npx @modelcontextprotocol/verygoodopensource-very_good_ai_flutter_plugin --scope restricted
🔓 Unrestricted Access
npx @modelcontextprotocol/verygoodopensource-very_good_ai_flutter_plugin

Key Features

Native MCP Protocol Support
High-performance Data Streaming
Type-safe Tool Definitions
Seamless Environment Integration

Optimized Use Cases

Connecting external databases to AI workflows
Automating workflow tasks via natural language
Augmenting developer productivity with specialized tools

VeryGoodOpenSource/very_good_ai_flutter_plugin FAQ

Q

What is an MCP server?

MCP is an open standard that enables developers to build secure, two-way integrations between AI models and local or remote data sources.

Q

Is this server ready for production?

Yes, this server follows standard MCP security patterns and tool-restricted access.

Official Documentation

View on GitHub

VGV AI Flutter Plugin

Very Good Ventures Very Good Ventures

A Claude Code plugin that accelerates Flutter & Dart development with best-practices skills from Very Good Ventures.

Developed with 💙 by Very Good Ventures 🦄

Overview

VGV AI Flutter Plugin is a collection of contextual best-practices skills that Claude uses when helping you write Flutter and Dart code. Each skill provides opinionated, production-quality guidance covering architecture patterns, naming conventions, folder structures, code examples, testing strategies, and anti-patterns to avoid, so you get code that follows VGV standards out of the box.

Installation

One-line install from your terminal:

claude plugin marketplace add VeryGoodOpenSource/very-good-claude-code-marketplace && claude plugin install vgv-ai-flutter-plugin

Or inside an active Claude Code session, run these as two separate commands (the second only after the first completes):

  1. Add the marketplace:

    /plugin marketplace add VeryGoodOpenSource/very-good-claude-code-marketplace
    
  2. Install the plugin:

    /plugin install vgv-ai-flutter-plugin
    

For more details, see the Very Good Claude Marketplace.

Skills

SkillDescription
Create ProjectScaffold new Dart/Flutter projects from Very Good CLI templates — flutter_app, dart_package, flutter_plugin, dart_cli, flame_game, and more
AnimationsFlutter built-in animations — implicit vs explicit decision tree, Material 3 motion tokens (Durations, Easing), page transitions with GoRouter, Hero animations, staggered animations, and performance guidelines
AccessibilityWCAG 2.2 compliance with A/AA/AAA conformance level selection across iOS, Android, Web, macOS, Windows, and Linux — semantics, screen reader support, touch targets, focus management, color contrast, text scaling, and motion sensitivity
TestingUnit, widget, and golden testing — mocktail mocking, pumpApp helpers, test structure & naming, coverage patterns, and dart_test.yaml configuration
NavigationGoRouter routing — @TypedGoRoute type-safe routes, deep linking, redirects, shell routes, and widget testing with MockGoRouter
Internationalizationi18n/l10n — ARB files, context.l10n patterns, pluralization, RTL/LTR support with directional widgets, and backend localization strategies
Material ThemingMaterial 3 theming — ColorScheme, TextTheme, component themes, spacing systems, and light/dark mode support
BlocState management with Bloc/Cubit — sealed events & states, BlocProvider/BlocBuilder widgets, event transformers, and testing with blocTest() & mocktail
Layered ArchitectureVGV layered architecture — four-layer package structure (Data, Repository, Business Logic, Presentation), dependency rules, data flow, and bootstrap wiring
SecurityFlutter-specific static security review — secrets management, flutter_secure_storage, certificate pinning, Random.secure(), formz validation, dependency vulnerability scanning with osv-scanner, and OWASP Mobile Top 10 guidance
UI PackageFlutter UI package creation — custom widget libraries with ThemeExtension-based theming, design tokens, barrel file exports, widget tests, Widgetbook catalog, and consistent API conventions
License ComplianceDependency license auditing — categorizes licenses (permissive, weak/strong copyleft, unknown), flags non-compliant or missing licenses, and produces a structured compliance report using Very Good CLI
Dart/Flutter SDK UpgradeBump Dart and Flutter SDK constraints across packages — CI workflow versions, pubspec.yaml environment constraints, and PR preparation for SDK upgrades
Very Good Analysis UpgradeUpgrade the very_good_analysis lint package across Dart/Flutter projects — version bump in pubspec.yaml, minimal lint fixes for new rules, and PR preparation
Green GateAutonomous verify-fix-rerun loop that drives a package to green across four quality gates — analyze, format, test, and coverage — exiting only when a final iteration proves all four pass with observed numbers (default 100% coverage, overridable)

Agents

This plugin ships subagents that Claude Code can dispatch as isolated, specialized reviewers. Unlike skills, agents are not invoked as slash commands — Claude dispatches them automatically, or you can ask Claude to run one by name (e.g. "review my changes with the flutter-reviewer agent").

AgentDescription
Flutter ReviewerRead-only reviewer of changed Dart code against the preloaded bloc, testing, static-security, and accessibility standards — emits a location | problem | fix | standard findings table. Never edits files; Bash is hook-restricted to git diff/git status

Hooks

This plugin includes SessionStart, PreToolUse, and PostToolUse hooks that validate the Very Good CLI, guard against CLI bypass, and automatically run Dart analysis and formatting on .dart files.

HookTriggerBehavior
Warn Missing MCP (warn-missing-mcp.sh)SessionStartWarns if the Very Good CLI is missing or older than 1.3.0; non-blocking
Check VGV CLI (check-vgv-cli.sh)PreToolUse (mcp__.*very-good-cli__.*)Auto-approves Very Good CLI MCP tool calls in every run mode via a PreToolUse allow decision, so they never dead-end when the tool isn't on permissions.allow (including under skipAutoPermissionPrompt); denies with an install/upgrade message if the CLI is missing or < 1.3.0
Block CLI Workarounds (block-cli-workarounds.sh)PreToolUse (Bash)Blocks direct CLI bypass of Very Good CLI commands through the Bash tool; exits 2 on failure (blocking)
Allow Read-only Git (allow-readonly-git.sh)PreToolUse (Bash, flutter-reviewer agent only)Restricts the flutter-reviewer agent's Bash to git diff/git status; exits 2 on anything else (blocking). Scoped via the agent's frontmatter, not hooks.json
Analyze (analyze.sh)PostToolUse (Edit/Write)Runs dart analyze on the modified .dart file; exits 2 on failure (blocking — Claude must fix issues before continuing)
Format (format.sh)PostToolUse (Edit/Write)Runs dart format on the modified .dart file; always exits 0 (non-blocking — formatting is applied silently)

Prerequisites

  • Dart SDK — must be available on your PATH
  • jq — used to parse the hook payload; hooks are skipped gracefully if jq is not installed

Usage

Skills activate automatically when Claude detects relevant context in your conversation. Simply ask Claude to help with a Flutter or Dart task, and the appropriate skill's guidance will be applied.

For example:

You: Create a new Bloc for user authentication with login and logout events.

Claude: (applies the Bloc skill — uses sealed classes for events and states, follows the Page/View separation pattern, generates blocTest() tests with mocktail mocks, and follows VGV naming conventions)

You can also invoke skills directly as slash commands:

/create-project
/animations
/accessibility
/bloc
/internationalization
/layered-architecture
/material-theming
/navigation
/static-security
/testing
/ui-package
/license-compliance
/dart-flutter-sdk-upgrade
/very-good-analysis-upgrade
/green-gate

What Each Skill Provides

Every skill includes:

  • Core Standards — recommended conventions (e.g., mocktail over mockito, sealed classes for Bloc events)
  • Architecture patterns — folder structures and layered architecture guidance
  • Code examples — ready-to-adapt snippets following best practices
  • Testing strategies — unit, widget, and integration testing patterns
  • Common workflows — step-by-step guides for tasks like "adding a new feature" or "adding a new route"
  • Anti-patterns — what to avoid and why

MCP Integration

This plugin includes a .mcp.json configuration that connects Claude Code to two MCP servers — the Dart and Flutter MCP server (dart mcp-server) and the Very Good CLI MCP server (very_good mcp). This gives Claude the ability to execute Dart, Flutter, and Very Good CLI actions directly, complementing the skills which provide architectural guidance and best practices.

Dart and Flutter MCP server (dart)

The Dart and Flutter MCP server ships with the Dart SDK and exposes core Dart/Flutter development actions to Claude.

Available MCP tools:

ToolWhat it does
Error analysis & fixingAnalyze the project for static errors and apply fixes
Symbol resolutionResolve symbols to elements and fetch documentation and signature information
App introspectionIntrospect and interact with a running Dart or Flutter application
Package searchSearch pub.dev for packages that fit a given use case
Dependency managementAdd, remove, and update dependencies in pubspec.yaml files
Test executionRun tests and analyze the results
Code formattingFormat code using the same formatter and config as dart format

Prerequisites:

  • Dart SDK installed with dart on your PATH (the MCP server is provided by dart mcp-server)

Very Good CLI MCP server (very-good-cli)

The Very Good CLI MCP server exposes Very Good CLI commands to Claude.

Available MCP tools:

ToolWhat it does
createScaffold projects from templates (flutter_app, dart_cli, dart_package, flutter_package, flutter_plugin, flame_game, docs_site)
testRun tests with coverage enforcement
packages_check_licensesAudit dependency licenses against an allowed list
packages_getGet dependencies for a single package or recursively across a monorepo

Prerequisites:

  • Very Good CLI v1.3.0+ installed: dart pub global activate very_good_cli
  • very_good must be on your PATH

How it works:

The .mcp.json file at the project root registers the dart and very-good-cli MCP servers using stdio transport. When Claude Code detects this configuration, it connects to both servers and gains access to the tools above. The skills continue to provide knowledge and best practices while the MCP tools handle execution.

Global Ranking

5.1
Trust ScoreMCPHub Index

Based on codebase health & activity.

Manual Config

{ "mcpServers": { "verygoodopensource-very_good_ai_flutter_plugin": { "command": "npx", "args": ["verygoodopensource-very_good_ai_flutter_plugin"] } } }