Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.dingdawg/agent-wallet

NPM · DINGDAWG-AGENT-WALLET · SCANNED AUG 7

Governed USDC wallet for AI agents — policy gates, spending caps, and Ed25519-signed receipts.

+62 this week 67 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Known CVEs were checked across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Dependency health was assessed across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency32
Schema Quality & AI Usability71
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 518 tokens (~103/item across 5 items; 5 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management40
  • Stability observed for 12 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage94
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 83% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · dingdawg-agent-wallet

# add to Claude Code
claude mcp add dingdawg-agent-wallet -- npx -y dingdawg-agent-wallet
# add to Codex CLI
codex mcp add dingdawg-agent-wallet -- npx -y dingdawg-agent-wallet
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dingdawg-agent-wallet": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "dingdawg-agent-wallet"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add dingdawg-agent-wallet --command npx --arg -y --arg dingdawg-agent-wallet
# ~/.hermes/config.yaml
mcp_servers:
  dingdawg-agent-wallet:
    command: "npx"
    args: ["-y", "dingdawg-agent-wallet"]
// mcp.json
{
  "mcpServers": {
    "dingdawg-agent-wallet": {
      "command": "npx",
      "args": [
        "-y",
        "dingdawg-agent-wallet"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 7 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 37 to 40. That category is still filling its 30-day observation window: 11 days of observed history at the previous scan, 12 at this one. The score rises as the window fills, whether or not the server changes.

  • 5 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 30 to 33. That category is still filling its 30-day observation window: 9 days of observed history at the previous scan, 10 at this one. The score rises as the window fills, whether or not the server changes.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +44
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • License: unverified → fail functional
    • Tool coverage: 100 → unverified functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Schema quality: unverified → good functional
    • Dependency health: unverified → partial functional
    • Licence: BUSL-1.1 functional
  • 1 Aug 26 +15
    • Tool coverage: unverified → 100 functional
  • 31 Jul 26 −20
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −21
    • Tool coverage: 100 → unverified functional
    • Dependency health: unverified → partial functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 7 Aug 2026 · Analysed npm/[email protected]

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 94 packages
Packages resolved 94
Deprecated 94
Stale 29
Tree resolution Partial

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools · 5 exposed · ~518 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
governed_receive ~82

Record receipt of a payment with tamper-proof chain receipt. Use when your agent receives funds — creates an auditable record with local SHA-256 anchor.

NameTypeReqDescription
expected_amount_usdcnumberExpected receive amount
memostringOptional memo
senderstringSender address
wallet_idstringyesYour governed wallet ID

No output schema declared.

No examples provided.

governed_spend ~113

Execute a governed USDC payment. Policy is checked before execution. All outcomes (allow AND deny) produce an immutable receipt. Returns agentkit_call with the SDK method to execute on-chain.

NameTypeReqDescription
amount_usdcnumberyesAmount in USDC
approval_tokenstringHuman approval token (required for amounts above step-up threshold)
memostringOptional payment memo
recipientstringyesRecipient wallet address or ENS
wallet_idstringyesGoverned wallet ID

No output schema declared.

No examples provided.

provision_wallet ~159

Create or connect a governed wallet. Attaches spend policy (daily cap, per-call cap, allowlist) and writes a genesis receipt to the tamper-proof chain. Supports Coinbase AgentKit, x402, or local providers.

NameTypeReqDescription
allowed_recipientsarrayOptional allowlist of recipient wallet addresses
daily_cap_usdcnumberDaily spend cap in USDC (default: 500)
labelstringHuman-readable label
networkstringChain network (default: base)
per_call_cap_usdcnumberPer-transaction cap in USDC (default: 100)
providerstringyesWallet provider
wallet_idstringOptional custom wallet ID

No output schema declared.

No examples provided.

wallet_audit ~63

Return tamper-proof audit trail of all wallet actions. chain_verified=true means every receipt links correctly to its predecessor.

NameTypeReqDescription
limitnumberMax receipts to return (default: 20)
wallet_idstringFilter by wallet (omit for all)

No output schema declared.

No examples provided.

wallet_policy ~101

Update spend policy for a governed wallet. Set daily caps, per-call caps, step-up thresholds, and recipient allowlists.

NameTypeReqDescription
add_recipientstringAdd address to allowlist
daily_cap_usdcnumber
per_call_cap_usdcnumber
remove_recipientstringRemove address from allowlist
step_up_thresh_usdcnumber
wallet_idstringyes

No output schema declared.

No examples provided.