npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cipherpay/zipher-cli

v0.2.0

Published

Headless Zcash light wallet for AI agents — CLI + MCP server

Readme

@cipherpay/zipher-cli

Headless Zcash light wallet for AI agents. Shielded payments, spending policies, and x402 paywall access — from the command line or via MCP.

Install

npm install -g @cipherpay/zipher-cli

Installs two binaries: zipher (CLI) and zipher-mcp-server (MCP server for AI agents).

Quick start

# One-command setup: creates encrypted wallet, prints seed phrase + MCP config
zipher wallet init

# Check balance (auto-syncs)
zipher balance

# Send ZEC
zipher send --to <address> --amount 0.01

# Pay any 402 paywall
zipher pay https://api.example.com/premium/weather

# Cross-chain swap (ZEC → SOL, USDC, etc.)
zipher swap quote --to SOL --amount 0.5
zipher swap execute --to SOL --amount 0.5 --destination <solana-address>

# Session-based payments (prepaid credit)
zipher session open --url https://api.example.com --amount 0.1
zipher session request --id <session-id> --endpoint /data

MCP server

For AI agent frameworks (Claude, Cursor, etc.), add to your MCP config:

{
  "mcpServers": {
    "zipher": {
      "command": "zipher-mcp-server"
    }
  }
}

The MCP server loads the wallet seed from the encrypted OWS vault created by zipher wallet init. No environment variables needed.

MCP tools

| Tool | Description | |------|-------------| | wallet_status | Balance, sync height, seed source, lock state | | wallet_lock / wallet_unlock | Clear seed from memory when not in use | | propose_send | Create a transaction proposal (policy-checked) | | confirm_send | Sign and broadcast a proposed transaction | | approve_send | Approve a transaction flagged for human review | | get_pending_approval | Check if a transaction is awaiting approval | | pay_url | Pay an x402 paywall in one step | | session_open / session_request | Prepaid session-based payments | | swap_quote / swap_execute | Cross-chain swaps via Near Intents | | get_policy / set_policy | View and update spending limits |

Security model

  • Encrypted vault — seed phrase encrypted at rest (OWS standard)
  • Process hardening — core dumps disabled, ptrace blocked
  • Spending policies — per-transaction limits, daily caps, address allowlists
  • Human-in-the-loop — transactions above threshold require explicit approval
  • Audit logging — every agent action logged with timestamps
  • Lock/unlock — seed cleared from memory when wallet is locked

Spending policies

Default policy (created by zipher wallet init):

max_per_tx = 1000000      # 0.01 ZEC per transaction
daily_limit = 10000000     # 0.1 ZEC per day
approval_threshold = 5000000  # 0.05 ZEC requires human approval
allowlist = []             # Empty = any address allowed

Edit at ~/.zipher/mainnet/policy.toml or use set_policy via MCP.

Supported platforms

| OS | Arch | |-------|-------| | macOS | ARM64 | | macOS | x64 | | Linux | x64 | | Linux | ARM64 |

Links