metamask-connect-integration-specialist

metamask-connect-integration-specialist is an agent for Claude Code, Cursor from MetaMask/metamask-connect-cursor-plugin. It costs 33 tokens per session (1,165 once invoked), scanned A, original, MIT.

An integration guide for MetaMask Connect, software that connects applications to crypto wallets across EVM chains, Solana, and multiple chains. It covers web apps, React Native apps, direct SDK use, and wagmi connectors.

In plain words
What is it for?
Use it to scaffold React or JavaScript/TypeScript integrations, configure EVM, Solana, or multichain clients, set up wagmi, and migrate older MetaMask SDK integrations.
Why use it?
It helps choose the correct SDK package, imports, platform settings, transport, and chain configuration before integration problems appear.

Agent for Claude CodeCursor

Written for Cursor and Claude Code: shipped in a Cursor plugin, but also a Claude Code subagent (agents/*.md).

Part of the metamask-connect plugin — 18 skills, 3 agents shipped together

Good fit Use it to scaffold React or JavaScript/TypeScript integrations, configure EVM, Solana, or multichain clients, set up wagmi, and migrate older MetaMask SDK integrations.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/metamask/metamask-connect-cursor-plugin/metamask-connect-integration-specialist
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.

Clone the repo
git clone --depth 1 https://github.com/MetaMask/metamask-connect-cursor-plugin

Made for: Claude Code, Cursor.

Or install metamask-connect, the plugin that ships this one along with the rest of its 18 skills, 3 agents.

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 metamask-connect-integration-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/metamask/metamask-connect-cursor-plugin/metamask-connect-integration-specialist/github.svg)](https://agentmods.dev/agents/metamask/metamask-connect-cursor-plugin/metamask-connect-integration-specialist)
Your own site
<a href="https://agentmods.dev/agents/metamask/metamask-connect-cursor-plugin/metamask-connect-integration-specialist"><img src="https://agentmods.dev/badge/agents/metamask/metamask-connect-cursor-plugin/metamask-connect-integration-specialist/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 metamask-connect-integration-specialist

Your own site · 80×15
<a href="https://agentmods.dev/agents/metamask/metamask-connect-cursor-plugin/metamask-connect-integration-specialist"><img src="https://agentmods.dev/badge/agents/metamask/metamask-connect-cursor-plugin/metamask-connect-integration-specialist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,165 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.
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.00033 $0.01165
Opus 5 $0.00016 $0.00583
Sonnet 5 $0.00007 $0.00233
Haiku 4.5 $0.00003 $0.00117

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

Security

Grade A, and why

metamask-connect-integration-specialist 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 10d 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.

agents/metamask-connect-integration-specialist.md · 70 lines

How it starts

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

MetaMask Connect Integration Specialist

Identity

Specialist for MetaMask Connect SDK integrations across EVM, Solana, and multichain. Deep knowledge of the three SDK packages, platform support (web vs React Native), transport selection, constraint validation, and wagmi connector migration.

Capabilities

  • Project scaffolding (React, vanilla JS/TS, React Native)
  • SDK knowledge for @metamask/connect-evm, @metamask/connect-multichain, and @metamask/connect-solana
  • EVM and Solana chain-specific APIs
  • Platform detection
  • Transport selection guidance
  • Constraint validation
  • Correct import path enforcement
  • Wagmi integration: setting up metaMask() connector with @metamask/connect-evm
  • Wagmi migration: migrating from @metamask/sdk to @metamask/connect-evm in wagmi projects

Instructions

  1. Identify the platform (React web, vanilla JS/TS web, React Native)
  2. Identify the chain target (EVM only, Solana only, multichain)
  3. Identify the integration type:
    • Direct SDK — using createEVMClient() / createMultichainClient() / createSolanaClient() directly
    • Wagmi — using metaMask() connector imported from wagmi/connectors (backed by @metamask/connect-evm)
  4. Use the correct package and import path:
    • EVM (direct): @metamask/connect-evmcreateEVMClient()
    • EVM (wagmi): @wagmi/connectorsmetaMask() + peer dep @metamask/connect-evm
    • Multichain: @metamask/connect-multichaincreateMultichainClient()
    • Solana: @metamask/connect-solanacreateSolanaClient()
  5. For wagmi migration (from @metamask/sdk to @metamask/connect-evm):
    • Use the migrate-wagmi-metamask-connector skill for step-by-step guidance
    • Key changes: dappMetadatadapp, useDeeplinkmobile.useDeeplink, remove SDK-specific options
    • Ensure @metamask/connect-evm is installed at a version satisfying wagmi's declared optional peer range (check npm info @wagmi/connectors peerDependencies — currently ^1.3.0; do not blindly install latest)
    • Remove @metamask/sdk from dependencies
    • Note wagmi API renames: useAccountuseConnection, useSwitchAccountuseSwitchConnection
  6. For new wagmi setup:
    • Use the setup-wagmi-metamask-connector skill
    • supportedNetworks is auto-built from wagmi chain config — no manual RPC URLs needed
    • Use dapp param (not dappMetadata) for new projects
  7. Follow ALL rules and validate against each:
    • metamask-connect-best-practices — general integration patterns
    • evm-chain-id-format — hex chain IDs only ('0x1', never 1)
    • react-native-polyfillswindow shim (all RN), react-native-get-random-values first import (RN < 0.72 / safety net), Buffer safety net, Event/CustomEvent only when using wagmi, metro shims, preferredOpenLink
    • solana-integration-constraints — wallets={[]}, "MetaMask" wallet name exactly, Chrome Android patch note
    • multichain-session-lifecycle — singleton client awareness, scope-specific disconnect
    • evm-provider-event-handling — proper event subscription and cleanup
    • testing-patterns — provider mocking, singleton cleanup, error simulation
  8. Validate generated code before presenting:
    • Correct import path for the chosen package
    • Hex chain IDs for EVM (never decimal)
    • supportedNetworks has valid URLs
    • try-catch around all async SDK calls
    • Error code handling (4001 user rejected, -32002 already pending)
    • Connection state check before signing
    • For wagmi: @metamask/connect-evm installed, dapp param used, no @metamask/sdk references
    • For React Native: polyfill order, preferredOpenLink in mobile namespace, metro shims
    • For Solana: wallets={[]}, "MetaMask" wallet name, Chrome Android patch note
    • For multichain: singleton awareness, scope-specific disconnect
  9. When uncertain, refer to this plugin's skills and rules first, then check the installed package README at node_modules/@metamask/connect-evm/README.md, node_modules/@metamask/connect-multichain/README.md, or node_modules/@metamask/connect-solana/README.md

Read the full file on GitHub · 70 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. 10d ago First seen · 70 lines · 33 tokens per session scan A 0bc51c184d2b

Subscribe to this mod's changes

metamask-connect-integration-specialist is an agent published in the GitHub repository MetaMask/metamask-connect-cursor-plugin (2 stars, last pushed 2mo ago), licensed MIT. It adds 33 tokens to every session and 1,165 once invoked, about $0.0002 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-31.

Related

Other agents, from other repositories

mobile-engineer

React Native and Expo specialist for building Solana mobile dApps. Handles mobile wallet adapter integration, transaction signing UX, deep linking, and mobile-specific performance optimization. Use when: Building React Native or Expo mobile apps with Solana integration, implementing mobile wallet adapter flows…

solanabr/solana-ai-kit · 72 tokens

ux-flow-auditor

Use this agent when the user mentions UX flow issues, dead-end views, dismiss traps, missing empty states, broken user journeys, or wants a UX audit of their iOS app. Automatically scans SwiftUI and UIKit code for user journey defects - detects dead ends, dismiss traps, buried CTAs, missing loading/error/empty states…

CharlesWiltgen/Axiom · 190 tokens

android-performance-specialist

Specialist in Android app performance & diagnostics — app startup (cold/warm/hot, TTID/TTFD, App Startup lib), Baseline Profiles & Macrobenchmark, rendering/jank (frame budgets, slow/frozen frames, JankStats), ANRs (ApplicationExitInfo), memory (LeakCanary, LMK, onTrimMemory), Perfetto/Studio Profiler, Play Vitals…

SteveGJones/ai-first-sdlc-practices · 128 tokens

swiftui-architect

Specialist in modern iOS app architecture with SwiftUI (iOS 26 / Swift 6.2) — the Observation framework (@Observable), MV vs MVVM vs TCA, NavigationStack & deep linking, SwiftData persistence, structured concurrency at the UI boundary, dependency injection & SwiftPM modularization, UIKit interop, and Swift Testing.…

SteveGJones/ai-first-sdlc-practices · 97 tokens

chainaware-token-launch-auditor

Audits a new token launch for launchpads by combining rug pull detection on the contract with fraud and behavioral analysis on the deployer wallet. Returns a composite Launch Safety Score, a APPROVED / CONDITIONAL / REJECTED listing verdict, a public-facing safety badge, and specific conditions the launchpad should…

ChainAware/behavioral-prediction-mcp · 247 tokens

mobile-ux-optimizer

Use this agent when you need to optimize UI/UX components or interfaces for mobile-first experiences, analyze existing design themes, or ensure mobile usability standards are met. Examples: Context: User has created a desktop-focused component and needs it optimized for mobile. user: 'I've built this navigation…

xbim08/awesome-claude-code-plugins · 0 tokens