# io.github.ShieldZCash/mcp (npm · @shieldz/mcp)

Keyless non-custodial crypto payments for AI agents: payment links and tip jars, no API key.

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

## Components

- remote · `shieldz.cash`: 67/100, [markdown](https://verifymcp.io/servers/shieldzcash-mcp/shieldz.md), [page](https://verifymcp.io/servers/shieldzcash-mcp/shieldz)
- npm · `@shieldz/mcp`: 69/100 (this document), [markdown](https://verifymcp.io/servers/shieldzcash-mcp/shieldz-mcp.md), [page](https://verifymcp.io/servers/shieldzcash-mcp/shieldz-mcp)

## Channel facts

- Registry: `npm`
- Package: `@shieldz/mcp`
- Version: `0.3.0`
- 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-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 36 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 73/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 468 tokens (~156/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 98/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 93% 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 shieldzcash-mcp -- npx -y @shieldz/mcp
```

### Codex

```bash
codex mcp add shieldzcash-mcp -- npx -y @shieldz/mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "shieldzcash-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@shieldz/mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add shieldzcash-mcp --command npx --arg -y --arg @shieldz/mcp
```

### Hermes

```yaml
mcp_servers:
  shieldzcash-mcp:
    command: "npx"
    args: ["-y", "@shieldz/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "shieldzcash-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@shieldz/mcp"
      ]
    }
  }
}
```

## 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-03 (score 69, +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 68, +63)

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

### 2026-08-01 (score 5, −15)

- [functional regression] Tool coverage: 100 → unverified

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

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

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

- [functional regression] Tool coverage: 100 → unverified

### 2026-07-28 (score 45, +21)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 93

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

First indexed and scored.

## MCP tools (3)

### `create_payment_link` (~176 tokens)

Create a one-time crypto payment link with ZERO setup, no account, no API key. Give a destination wallet address and an amount; get back a shareable pay_url, an embeddable button, and a manage_url. Non-custodial: funds settle directly to the address you provide. Optionally pass an email so the owner can claim a full dashboard later.

Input parameters:

- `address` (string, required): Destination wallet; funds settle here. Shieldz never holds them.
- `amount_usd` (number, required): Amount in USD, e.g. 49 for $49.00
- `asset` (string): Defaults to USDC
- `chain` (string): Defaults to base
- `email` (string): Optional, lets the owner claim a dashboard later
- `memo` (string): Description shown on the checkout

### `create_tip_jar` (~217 tokens)

Create a reusable 'pay what you want' tip jar with ZERO setup, no account, no API key. The payer chooses the amount. Returns a shareable /tip url, an embeddable button, and a manage_url. Idempotent per wallet address: calling again updates the same tip jar. Non-custodial: funds settle directly to the address you provide.

Input parameters:

- `address` (string, required): Destination wallet; funds settle here. Shieldz never holds them.
- `asset` (string): Defaults to USDC
- `chain` (string): Defaults to base
- `description` (string)
- `email` (string): Optional, lets the owner claim a dashboard later
- `slug` (string): Optional custom URL slug; auto-generated if omitted
- `suggested_amounts_usd` (array): Preset amount buttons in USD, e.g. [3, 5, 10]
- `title` (string): Heading shown on the tip page, e.g. 'Buy me a coffee'

### `get_account_status` (~75 tokens)

Look up a keyless Shieldz account by its manage_token (returned when you create a payment link or tip jar). Returns settlement details, tip jars, totals (paid/pending), and the full invoice list as structured JSON.

Input parameters:

- `manage_token` (string, required): The manage_token from create_payment_link / create_tip_jar

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/shieldzcash-mcp/shieldz-mcp#diagnostics

## Score history

- 2026-08-03: 69
- 2026-08-02: 68
- 2026-08-01: 5
- 2026-07-31: 20
- 2026-07-30: 24
- 2026-07-28: 45
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/@shieldz/mcp
- Socket report: https://socket.dev/npm/package/@shieldz/mcp
- Repository: https://github.com/ShieldZCash/shieldz-mcp
- Website: https://shieldz.cash/agents
- Changelog RSS feed: https://verifymcp.io/servers/shieldzcash-mcp/shieldz-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/shieldzcash-mcp/shieldz-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/shieldzcash-mcp/shieldz-mcp
