Provides verifiable ZAP1 attestation receipts for Zcash workflows, enabling trustless proof verification and chain anchoring.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Zcash MCP.
zcash_capability_manifestMachine-readable scope map for agent use: covered surfaces, excluded wallet functions, and composition rules
zcash_conformance_checkValidate only the shape of a frozen v1 receipt packet; v1 cannot prove inclusion or anchor confirmation
zcash_receipt_templateCustomer-ready receipt workflow for agent actions, payment receipts, operator lifecycle events, and policy attestations
zap1_wallet_receipt_requestConvert a wallet-layer action result into hash-only ZAP1 receipt request fields
zap1_attest_external_actionMap bounded external verification evidence into the supported ZAP1 `AGENT_ACTION` write contract and precompute the expected typed leaf
zap1_verify_external_receiptValidate legacy v1 external-receipt shape without claiming cryptographic inclusion or anchor confirmation
ZAP1 receipts for Zcash agents: verify workflows without trusting the server.
ZAP1 is an attestation and proof rail for Zcash workflows. Frontier Compute maintains the reference ZAP1 implementation.
A wrapper makes you trust the server. ZAP1 makes the server unnecessary to trust.
Core rule: observe state, bound the claim, hash evidence, issue a receipt, verify later.
MCP is the standard way for AI agents to call external tools. zcash-mcp
exposes the ZAP1 attestation layer for agents that need verifiable receipts
around Zcash workflows: create ZAP1 attestation leaves, query anchor state,
and verify proof receipts.
This is not a full wallet MCP. Balance scanning, private key custody, seed handling, PCZT signing, shielded spend construction, and lightwalletd or Zaino wallet synchronization are complementary wallet-layer work, not this server's scope.
Wallet MCPs can move value. ZAP1 proves the workflow around the value, and the counterparty can verify the proof without trusting Frontier.
Tool servers expose what a backend says right now. ZAP1 produces a receipt that another party can verify later from the schema, proof material, and Zcash anchor.
ZAP1 is the proof rail for Zcash agent workflows:
attest: create a typed event leaf.anchor: commit leaves into a Merkle root anchored to Zcash.prove: return a receipt packet for a leaf.verify: let another party check the receipt without trusting the original
agent.Agent systems need more than a payment or a transaction lookup. They need a receipt that another agent, user, auditor, or service can verify later:
That is the lane for this server. It gives Zcash agents a receipt layer that can sit beside any wallet, signer, custody system, lightwalletd stack, Zaino stack, or application-specific payment flow.
See ZAP1 Proof Rail for the category boundary, receipt model, integration pattern, and red-team rejects. See ZAP1 Conformance for the receipt contract agents and integrations should satisfy. See Wallet Receipt Integration for the wallet-action handoff pattern. See External Rail Receipts for generic external-action receipt requests, and Receipt Disclosure Profiles for public, counterparty, auditor, grant, compliance, and internal packet shapes.
The zcash_capability_manifest tool gives agents a machine-readable scope map:
Good fits:
Poor fits:
Use zcash_receipt_template first when you are wiring ZAP1 into a product. It
returns a customer-ready workflow for the receipt type you want:
agent_action: prove an agent performed a named action with specific input
and output hashespayment_receipt: bind invoice or payment metadata to a ZAP1 leaf and later
prove inclusion under an anchored rootoperator_lifecycle: record deployment, upgrade, incident, recovery, or
policy state as a verifiable lifecycle eventpolicy_attestation: record an agent, service, or workflow policy decision
as a verifiable eventExpected flow:
zcash_capability_manifest to confirm the attestation boundary.zcash_receipt_template for the use case.zap1_wallet_receipt_request to convert the wallet
result into hash-only attest_event arguments.attest_event to create the typed ZAP1 leaf.get_anchor_status to check whether the leaf is anchored or waiting.verify_proof to verify tree inclusion.zap1_prove_receipt to fetch a handoff proof bundle.Acceptance checks:
leaf_countRed-team rejects:
ZAP1 verifies ZAP1 receipts. It does not audit or guarantee any external wallet, route, payment, bridge, exchange, or settlement system referenced by a receipt.
| Tool | What it does |
|---|---|
zcash_capability_manifest | Machine-readable scope map for agent use: covered surfaces, excluded wallet functions, and composition rules |
zcash_conformance_check | Validate only the shape of a frozen v1 receipt packet; v1 cannot prove inclusion or anchor confirmation |
zcash_receipt_template | Customer-ready receipt workflow for agent actions, payment receipts, operator lifecycle events, and policy attestations |
zap1_wallet_receipt_request | Convert a wallet-layer action result into hash-only ZAP1 receipt request fields |
zap1_attest_external_action | Map bounded external verification evidence into the supported ZAP1 AGENT_ACTION write contract and precompute the expected typed leaf |
zap1_verify_external_receipt | Validate legacy v1 external-receipt shape without claiming cryptographic inclusion or anchor confirmation |
zap1_verify_receipt_v2 | Verify the official proof-bundle-v2 plus retained AGENT_ACTION witness, or an integration receipt-v2; anchor confirmation remains separate |
zap1_extract_proof_artifact | Extract the portable proof artifact from a ZAP1 receipt |
zap1_check_anchor_freshness_at_height | Compute depth arithmetic from supplied heights without claiming chain confirmation |
zap1_verify_receipt_chain | Validate legacy v1 receipt-sequence shape without claiming proof or anchor validity |
zap1_compare_receipt_claims | Compare two ZAP1 receipts for claim, evidence, event, and anchor divergence |
zap1_audit_event_log | Replay a receipt sequence against a caller-supplied event-type policy |
attest_event | Create a typed ZAP1 attestation leaf for later anchoring |
verify_proof | Verify a ZAP1 Merkle proof |
zap1_prove_receipt | Fetch the full Merkle proof bundle for a leaf hash |
get_anchor_history | All ZAP1 Merkle root anchors with txids and block heights |
get_anchor_status | Current Merkle tree state: root, unanchored leaves, recommendation |
get_stats | ZAP1 protocol stats: leaves, anchors, types |
get_events | Recent ZAP1 attestation events with type, wallet hash, leaf hash |
get_agent_status | Attestation summary for a ZAP1 agent ID |
zcash_identity_register | Register an agent identity via AGENT_REGISTER attestation |
zcash_reputation_score | Fetch agent bond data and policy compliance as a reputation object |
decode_memo | Decode Zcash memo payloads: ZAP1 typed, ZIP 302, text, binary |
zap1_create_receipt_invoice | Create ZAP1 receipt metadata for an external payment workflow |
zap1_watch_receipt_invoice | Poll receipt-invoice status until paid or timeout |
get_block_height | Current chain height from Zebra |
lookup_transaction | Raw transaction data by txid |
zap1_verify_evm | Verify a ZAP1 Merkle proof on-chain via EVM contract |
Or install globally:
Add this to your MCP config:
Restart your client and ask for the current Zcash block height. Read-only tools do not need an API key.
Get a trial key for write operations:
Environment variables:
| Variable | Default | Description |
|---|---|---|
ZEBRA_RPC_URL | http://127.0.0.1:8232 | Zebra node JSON-RPC endpoint |
ZAP1_API_URL | https://api.frontiercompute.cash | ZAP1 attestation API |
ZAP1_API_KEY | none | API key for write operations |
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/frontier-compute-zcash-mcp)<a href="https://allmcps.com/mcp/frontier-compute-zcash-mcp"><img src="https://allmcps.com/api/badge/frontier-compute-zcash-mcp?style=directory" alt="Zcash MCP on AllMCPs" /></a>