# io.github.Zk-nd3r/zcash-mcp (npm · @frontiercompute/zcash-mcp)

Zcash shielded operations for AI agents. Memo decoding, attestation, proof verification.

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

## Components

- npm · `@frontiercompute/zcash-mcp`: 68/100 (this document), [markdown](https://verifymcp.io/servers/zk-nd3r-zcash-mcp/frontiercompute-zcash-mcp.md), [page](https://verifymcp.io/servers/zk-nd3r-zcash-mcp/frontiercompute-zcash-mcp)

## Channel facts

- Registry: `npm`
- Package: `@frontiercompute/zcash-mcp`
- Version: `0.2.2`
- 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**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), 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 66 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 669 tokens (~55/item across 12 items; 12 tools + 0 resources), lean.
  - 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**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% 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 zk-nd3r-zcash-mcp -- npx -y @frontiercompute/zcash-mcp
```

### Codex

```bash
codex mcp add zk-nd3r-zcash-mcp -- npx -y @frontiercompute/zcash-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add zk-nd3r-zcash-mcp --command npx --arg -y --arg @frontiercompute/zcash-mcp
```

### Hermes

```yaml
mcp_servers:
  zk-nd3r-zcash-mcp:
    command: "npx"
    args: ["-y", "@frontiercompute/zcash-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "zk-nd3r-zcash-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@frontiercompute/zcash-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 68, +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 67, +31)

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

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

- [security improvement] Malware scan: unverified → pass

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

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

### 2026-07-30 (score 46, +22)

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

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

First indexed and scored.

## MCP tools (12)

### `get_balance` (~51 tokens)

Get attestation and anchor status for a wallet hash via ZAP1 API. Returns lifecycle events, leaf count, and verification links.

Input parameters:

- `wallet_hash` (string, required): Wallet hash or agent ID to look up

### `send_shielded` (~90 tokens)

Generate a zcash: payment URI for shielded ZEC. Encodes address, amount, and optional memo into a scannable URI.

Input parameters:

- `address` (string, required): Recipient Zcash shielded address
- `amount` (number, required): Amount in ZEC
- `label` (string): Optional label for the payment
- `memo` (string): Optional memo text (max 512 bytes)

### `decode_memo` (~59 tokens)

Decode a Zcash shielded memo field. Handles ZAP1 typed memos, ZIP 302, plain text, and raw binary.

Input parameters:

- `memo` (string, required): Memo data as hex string or base64 (max 1024 bytes decoded)

### `attest_event` (~178 tokens)

Create a ZAP1 attestation event on Zcash. Writes a typed lifecycle, governance, or agent event to the Merkle tree. Returns leaf hash for verification.

Input parameters:

- `action_type` (string): Action type for AGENT_ACTION events
- `api_key` (string): ZAP1 API key (or set ZAP1_API_KEY env var)
- `event_type` (string, required): Event type: DEPLOYMENT, CONTRACT_ANCHOR, AGENT_ACTION, GOVERNANCE_PROPOSAL, etc.
- `input_hash` (string): SHA-256 of action input
- `output_hash` (string): SHA-256 of action output
- `proposal_id` (string): Proposal ID for governance events
- `serial_number` (string): Serial number or version tag
- `wallet_hash` (string, required): Wallet hash or agent identifier

### `verify_proof` (~56 tokens)

Verify a ZAP1 Merkle proof. Checks whether a leaf hash exists in the ZAP1 attestation tree and returns the proof path.

Input parameters:

- `leaf_hash` (string, required): Hex-encoded leaf hash to verify (64 chars)

### `get_stats` (~27 tokens)

Get ZAP1 protocol stats: total leaves, anchors, type distribution, and tree height.

### `get_block_height` (~19 tokens)

Get the current Zcash chain height from Zebra.

### `lookup_transaction` (~49 tokens)

Get raw transaction data by txid from Zebra.

Input parameters:

- `txid` (string, required): Transaction ID (64-char hex)
- `verbose` (boolean): Return decoded JSON instead of raw hex (default true)

### `get_anchor_history` (~27 tokens)

Get all ZAP1 Merkle root anchors with Zcash txids and block heights.

### `get_anchor_status` (~30 tokens)

Get current ZAP1 Merkle tree state: root hash, unanchored leaves, anchor recommendation.

### `get_events` (~44 tokens)

Get recent ZAP1 attestation events. Returns event type, wallet hash, leaf hash, and timestamps.

Input parameters:

- `limit` (integer): Number of events (default 20)

### `get_agent_status` (~39 tokens)

Get attestation summary for a ZAP1 agent: registration, policies, actions, event history.

Input parameters:

- `agent_id` (string, required): Agent identifier

## Diagnostics

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

## Score history

- 2026-08-03: 68
- 2026-08-02: 67
- 2026-08-01: 36
- 2026-07-31: 21
- 2026-07-30: 46
- 2026-07-28: 24
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/@frontiercompute/zcash-mcp
- Socket report: https://socket.dev/npm/package/@frontiercompute/zcash-mcp
- Repository: https://github.com/Frontier-Compute/zcash-mcp
- Changelog RSS feed: https://verifymcp.io/servers/zk-nd3r-zcash-mcp/frontiercompute-zcash-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/zk-nd3r-zcash-mcp/frontiercompute-zcash-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/zk-nd3r-zcash-mcp/frontiercompute-zcash-mcp
