flutter-mcp-toolkit-inspect
Installation
SKILL.md
When to use
Use this skill for read-only state inspection of a running Flutter app: what is shown on screen, recent errors, available debug targets, VM metadata, and widget tree details. Do not use for driving interaction — that is the interact skill. Start with discover_debug_apps when no connection target is established. Start with semantic_snapshot when you need to know which widgets are on screen.
Recipes
Snapshot the visible UI
- Call
semantic_snapshot(). - Each interactive node has a stable
ref(s_0,s_1, …) and the response includes asnapshot_id. - Pass refs to interaction tools; pass
snapshot_idto detect staleness.
Find an error by message
- Call
get_app_errors(count: 10). - Inspect the
errorsarray — each entry has message, stack trace, and timestamp. - Match on message text to find the source.
Related skills
More from arenukvern/mcp_flutter
flutter-mcp
5flutter-mcp-toolkit-debug
5flutter-mcp-toolkit-control
5flutter-mcp-cli-runtime-validation
5flutter-mcp-toolkit-guide
5gitnexus-cli
Use when the user needs to run GitNexus CLI commands like analyze/index a repo, check status, clean the index, generate a wiki, or list indexed repos. Examples: \"Index this repo\", \"Reanalyze the codebase\", \"Generate a wiki\"
1