# io.github.dingdawg/agent-wallet (npm · dingdawg-agent-wallet)

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

- Trust score: 67/100 (medium)
- Change this week: +62
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-07

## Components

- npm · `dingdawg-agent-wallet`: 67/100 (this document), [markdown](https://verifymcp.io/servers/dingdawg-agent-wallet/dingdawg-agent-wallet.md), [page](https://verifymcp.io/servers/dingdawg-agent-wallet/dingdawg-agent-wallet)

## Channel facts

- Registry: `npm`
- Package: `dingdawg-agent-wallet`
- Version: `1.0.6`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-07.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Known CVEs were checked across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Dependency health was assessed across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 32/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: the license (BUSL-1.1) isn't a recognized OSI-approved license.
  - Actively maintained (last published 31 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 518 tokens (~103/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 40/100
  - Stability observed for 12 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 94/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 83% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add dingdawg-agent-wallet -- npx -y dingdawg-agent-wallet
```

### Codex

```bash
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
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dingdawg-agent-wallet --command npx --arg -y --arg dingdawg-agent-wallet
```

### Hermes

```yaml
mcp_servers:
  dingdawg-agent-wallet:
    command: "npx"
    args: ["-y", "dingdawg-agent-wallet"]
```

### Other

```json
{
  "mcpServers": {
    "dingdawg-agent-wallet": {
      "command": "npx",
      "args": [
        "-y",
        "dingdawg-agent-wallet"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-07 (score 67, +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.

### 2026-08-05 (score 66, +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.

### 2026-08-03 (score 65, +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.

### 2026-08-02 (score 64, +44)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] License: unverified → fail
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: BUSL-1.1

### 2026-08-01 (score 20, +15)

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 5, −20)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 25, −21)

- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (5)

### `provision_wallet` (~159 tokens)

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.

Input parameters:

- `allowed_recipients` (array): Optional allowlist of recipient wallet addresses
- `daily_cap_usdc` (number): Daily spend cap in USDC (default: 500)
- `label` (string): Human-readable label
- `network` (string): Chain network (default: base)
- `per_call_cap_usdc` (number): Per-transaction cap in USDC (default: 100)
- `provider` (string, required): Wallet provider
- `wallet_id` (string): Optional custom wallet ID

### `governed_spend` (~113 tokens)

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.

Input parameters:

- `amount_usdc` (number, required): Amount in USDC
- `approval_token` (string): Human approval token (required for amounts above step-up threshold)
- `memo` (string): Optional payment memo
- `recipient` (string, required): Recipient wallet address or ENS
- `wallet_id` (string, required): Governed wallet ID

### `governed_receive` (~82 tokens)

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.

Input parameters:

- `expected_amount_usdc` (number): Expected receive amount
- `memo` (string): Optional memo
- `sender` (string): Sender address
- `wallet_id` (string, required): Your governed wallet ID

### `wallet_policy` (~101 tokens)

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

Input parameters:

- `add_recipient` (string): Add address to allowlist
- `daily_cap_usdc` (number)
- `per_call_cap_usdc` (number)
- `remove_recipient` (string): Remove address from allowlist
- `step_up_thresh_usdc` (number)
- `wallet_id` (string, required)

### `wallet_audit` (~63 tokens)

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

Input parameters:

- `limit` (number): Max receipts to return (default: 20)
- `wallet_id` (string): Filter by wallet (omit for all)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/dingdawg-agent-wallet/dingdawg-agent-wallet#diagnostics

## Score history

- 2026-08-07: 67
- 2026-08-06: 66
- 2026-08-05: 66
- 2026-08-04: 65
- 2026-08-03: 65
- 2026-08-02: 64
- 2026-08-01: 20
- 2026-07-31: 5
- 2026-07-30: 25
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/dingdawg-agent-wallet
- Socket report: https://socket.dev/npm/package/dingdawg-agent-wallet
- Repository: https://github.com/dingdawg/agent-wallet-demo
- Changelog RSS feed: https://verifymcp.io/servers/dingdawg-agent-wallet/dingdawg-agent-wallet.xml
- Changelog JSON feed: https://verifymcp.io/servers/dingdawg-agent-wallet/dingdawg-agent-wallet.json
- HTML version of this page: https://verifymcp.io/servers/dingdawg-agent-wallet/dingdawg-agent-wallet
