flutter-mcp-toolkit-maintain-macos

flutter-mcp-toolkit-maintain-macos is a skill for Claude Code from Arenukvern/mcp_flutter. It costs 68 tokens per session (691 once invoked), scanned A, original, MIT.

A maintenance guide for testing Flutter MCP features on macOS, including native app links, generated code, visual capture, and the Flutter debug connection.

In plain words
What is it for?
Use it to launch and validate the macOS showcase, update code-generation hooks, test native intent calls, and capture the app for inspection.
Why use it?
It helps keep the macOS showcase and native integration working and separates macOS checks from browser-only WebMCP checks.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash tool/evals/run_dogfood_eval.sh \.

Part of the flutter-mcp-toolkit plugin — 14 skills, 1 agent shipped together

Good fit Use it to launch and validate the macOS showcase, update code-generation hooks, test native intent calls, and capture the app for inspection.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Arenukvern/mcp_flutter
agentmods
npx agentmods add skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-maintain-macos

Made for: Claude Code.

Or install flutter-mcp-toolkit, the plugin that ships this one along with the rest of its 14 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flutter-mcp-toolkit-maintain-macos

README.md
[![agentmods](https://agentmods.dev/badge/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-maintain-macos/github.svg)](https://agentmods.dev/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-maintain-macos)
Your own site
<a href="https://agentmods.dev/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-maintain-macos"><img src="https://agentmods.dev/badge/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-maintain-macos/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for flutter-mcp-toolkit-maintain-macos

Your own site · 80×15
<a href="https://agentmods.dev/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-maintain-macos"><img src="https://agentmods.dev/badge/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-maintain-macos.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 691 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00068 $0.00691
Opus 5 $0.00034 $0.00345
Sonnet 5 $0.00014 $0.00138
Haiku 4.5 $0.00007 $0.00069

Measured 7d ago against content hash 2165651f8296, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

flutter-mcp-toolkit-maintain-macos scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/skills/flutter-mcp-toolkit-maintain-macos/SKILL.md · 80 lines

How it starts

The opening of the file, as written. The whole thing — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Maintain macOS (showcase + native intentcall)

Dogfood app: flutter_test_app. Platform doc: flutter_test_app/INTENTCALL_PLATFORM.md.

WebMCP on macOS

WebMCP modelContext is web-only. macOS dogfood proves VM extensions, dynamic registry, native invoke (intentcall:// via app_links), and visual capture (Screen Recording on host).

For WebMCP parity scoring, run web iteration separately (flutter-mcp-toolkit-maintain-web).

Launch showcase

make showcase-stop && make showcase
  • Log: .showcase/flutter_app.log
  • WS URI: grep ws://127.0.0.1:…/ws from log (default VM port 8181)
grep -Eo 'ws://127\.0\.0\.1:[0-9]+/[A-Za-z0-9_=-]+/ws' .showcase/flutter_app.log | tail -1

Stop: make showcase-stop.

Codegen & hooks

dart run mcp_server_dart/bin/flutter_mcp_toolkit.dart codegen sync \
  --platform web,android,ios,macos,linux,windows \
  --project-dir flutter_test_app

dart run mcp_server_dart/bin/flutter_mcp_toolkit.dart init intentcall-platform \
  --project-dir flutter_test_app --check
Target Role
macos/intentcall_codegen.sh Xcode Run Script → codegen sync --platform macos
macos/Runner.xcodeproj Run Script phase (see script comment if manual)
lib/main.dart IntentCallInvokeLinkListener for intentcall://invoke/…

Runtime validate

dart run mcp_server_dart/bin/flutter_mcp_toolkit.dart --save-images \
  --output-dir .showcase/macos_iter validate-runtime \
  --target "$MACOS_WS_URI" \
  --flutter-device macos \
  --timeout-ms 45000

Permissions (host process running CLI):

dart run mcp_server_dart/bin/flutter_mcp_toolkit.dart permissions status
dart run mcp_server_dart/bin/flutter_mcp_toolkit.dart permissions request

Dual-platform dogfood

bash tool/evals/run_dogfood_eval.sh \
  --ws-uri "$WEB_WS_URI" \
  --macos --macos-ws-uri "$MACOS_WS_URI"
  • flutter-mcp-cli-runtime-validation — doctor, capture backends, extensions
  • flutter-mcp-toolkit-maintain-web — WebMCP enablement
  • flutter-mcp-toolkit-dogfood-iterations — rubric + tracker

Read the full file on GitHub · 80 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 80 lines · 68 tokens per session scan A 2165651f8296

Subscribe to this mod's changes

flutter-mcp-toolkit-maintain-macos is a skill published in the GitHub repository Arenukvern/mcp_flutter (375 stars, last pushed 2d ago), licensed MIT. It adds 68 tokens to every session and 691 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.