flutter-mcp-toolkit-custom-tools

flutter-mcp-toolkit-custom-tools is a skill for Claude Code, Codex from Arenukvern/mcp_flutter. It costs 86 tokens per session (1,814 once invoked), scanned A, original, MIT.

A Flutter skill for adding app-specific tools and read-only data sources to an AI agent through a dynamic MCP registry. MCP is a standard way for software to expose actions and information to AI systems.

In plain words
What is it for?
It helps expose values such as cart totals, feature flags, diagnostic snapshots, and the current route, with suitable input rules for each tool or resource.
Why use it?
It fills the gap when the app’s built-in controls, such as screenshots or taps, cannot provide its own internal data or actions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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

Good fit It helps expose values such as cart totals, feature flags, diagnostic snapshots, and the current route, with suitable input rules for each tool or resource.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-custom-tools
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Arenukvern/mcp_flutter --skill flutter-mcp-toolkit-custom-tools
Clone the repo
git clone --depth 1 https://github.com/Arenukvern/mcp_flutter

Made for: Claude Code, Codex.

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-custom-tools

README.md
[![agentmods](https://agentmods.dev/badge/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-custom-tools/github.svg)](https://agentmods.dev/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-custom-tools)
Your own site
<a href="https://agentmods.dev/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-custom-tools"><img src="https://agentmods.dev/badge/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-custom-tools/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-custom-tools

Your own site · 80×15
<a href="https://agentmods.dev/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-custom-tools"><img src="https://agentmods.dev/badge/skills/arenukvern/mcp_flutter/flutter-mcp-toolkit-custom-tools.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,814 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.00086 $0.01814
Opus 5 $0.00043 $0.00907
Sonnet 5 $0.00017 $0.00363
Haiku 4.5 $0.00009 $0.00181

Measured yesterday against content hash 7b1ce126bfa1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

flutter-mcp-toolkit-custom-tools 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 yesterday.

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-custom-tools/SKILL.md · 182 lines

How it starts

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

Custom MCP Toolkit Tools & Resources (Dynamic Registry)

Use this when bundled MCP tools (screenshot, semantic snapshot, tap, …) are not enough and you need app-specific read surfaces or actions — e.g. cart totals, feature flags, curated debug snapshots of internal state. Entries are registered in the Flutter process and exposed to the agent through the dynamic registry.

Migration: The legacy call-entry type was removed in intentcall Phase 6b. Use AgentCallEntry or mcpToolkitTool / mcpToolkitResource. See flutter-mcp-toolkit-intentcall-migration.

Boundary: Change app discovery, Flutter VM-service extensions, or app-owned debug surfaces here. Change canonical registry/session semantics, schema policy, platform projection, or publish behavior in the upstream IntentCall repository.

Pick the right primitive

Need Use
One-off read of a simple value fmt_evaluate_dart_expression (no app code change).
Stable read-only payload (diagnostics, JSON snapshot, “current route”) AgentCallEntry.resource + fmt_client_resource. Prefer resources when the contract is “GET-like” and idempotent.
Parameterized or mutating action, or reusable named operation AgentCallEntry.tool + fmt_client_tool.

Handler signatures

Native AgentCallEntry (preferred for new code)

Handlers receive AgentArguments (Map<String, Object?>) and return AgentResult:

import 'package:mcp_toolkit/mcp_toolkit.dart';

final tool = AgentCallEntry.tool(
  namespace: 'app',
  name: 'cart_get_snapshot',
  description: 'Return current cart total and items for a user.',
  inputSchema: const {
    'type': 'object',
    'additionalProperties': false,
    'properties': {
      'userId': {'type': 'string'},
    },
    'required': ['userId'],
  },
  handler: (final args) async {
    final userId = args['userId']?.toString() ?? '';
    final cart = CartRepository.instance.forUser(userId);
    return AgentResult.success(
      message: 'ok',
      data: {
        'total': cart.total,
        'items': cart.items.map((final i) => i.toJson()).toList(),
      },
    );
  },
);

await MCPToolkitBinding.instance.addEntries(entries: {tool});

Read the full file on GitHub · 182 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. yesterday Changed · +1 lines 7b1ce126bfa1
  2. 10d ago First seen · 181 lines · 86 tokens per session scan A f1c48ead048a

Subscribe to this mod's changes

flutter-mcp-toolkit-custom-tools is a skill published in the GitHub repository Arenukvern/mcp_flutter (376 stars, last pushed yesterday), licensed MIT. It adds 86 tokens to every session and 1,814 once invoked, about $0.0004 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-08-30.

Related

Other skills, from other repositories

at_client_skills-sdk

Use this skill when a developer is building a Dart or Flutter app that depends on atclient or atclientflutter from pub.dev, stores or shares data via the Atsign Protocol, needs onboarding (CRAM new-atsign, atKeys file, keychain, APKAM) or APKAM enrollment, or asks about AtCollection , CItem , Query , sub-collections…

atsign-foundation/at_client_sdk · 232 tokens

firebase-auth

Use when setting up auth, managing auth state, implementing email/password or social sign-in, handling auth errors, or managing users.

evanca/flutter-ai-rules · 29 tokens

firebase-cloud-functions

Use when calling callable functions (httpsCallable), passing data to server-side logic, handling function errors/timeouts, configuring regions, or testing with the Emulator Suite.

evanca/flutter-ai-rules · 36 tokens

firebase-data-connect

Use when setting up Data Connect, writing GraphQL queries/mutations, configuring generated SDKs, handling offline, or applying security rules.

evanca/flutter-ai-rules · 31 tokens

developing-genkit-dart

Use when building AI agents in Dart, implementing Genkit flows or tools, integrating LLMs into Dart or Flutter applications, or using Genkit Dart plugins.

evanca/flutter-ai-rules · 39 tokens

implementing-openapi-in-dart

Reads an OpenAPI 3.0 specification and manually implements a type-safe Dart API layer using Dio for HTTP, Freezed or Equatable for models, and jsonserializable for serialisation. Use when given an OpenAPI/Swagger file (JSON or YAML) and asked to implement the API in Flutter/Dart, create Dart models from an API schema…

Poorgramer-Zack/dart-expert-skills · 134 tokens