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

emmy-zerion-cli

v1.0.1

Published

Zerion for AI agents and developers: hosted MCP docs, wallet-analysis skill, and a JSON-first CLI.

Readme

zerion-ai

Maintained by Zerion.

zerion-ai is the public, self-contained repo for using Zerion from AI agents and developer tools.

It packages two first-class integration paths:

  • Hosted MCP for Cursor, Claude, and other MCP-native agent environments
  • zerion for OpenClaw-like and command-based agent runtimes

It ships two flagship workflows:

  • wallet-analysis — portfolio, positions, transactions, and PnL analysis (agent operation)
  • wallet-trading — swap, bridge, buy/sell tokens (agent operation); wallet setup, agent tokens, and policies (manual, requires passphrase)

Wallet analysis demo

1. Choose your authentication method

Option A: API Key

Get an API key and export it: Get your API key

export ZERION_API_KEY="zk_dev_..."
  • API auth via HTTP Basic Auth
  • dev keys beginning with zk_dev_
  • current dev-key limits of 120 requests/minute and 5k requests/day

Useful docs:

Option B: x402 Pay-per-call

No API key needed. Pay $0.01 USDC per request via the x402 protocol. Supports EVM (Base) and Solana. The CLI handles the payment handshake automatically.

Pay-per-call applies to analytics commands only (portfolio, positions, history, pnl, analyze). Trading commands (swap, send, bridge, search, …) always use an API key, even when ZERION_X402 is set globally. The chains command runs fully offline (local registry) and needs no auth at all.

Single key — format is auto-detected:

export WALLET_PRIVATE_KEY="0x..."    # EVM (Base) — 0x-prefixed hex
export WALLET_PRIVATE_KEY="5C1y..."  # Solana — base58 encoded keypair

Both chains simultaneously:

export EVM_PRIVATE_KEY="0x..."
export SOLANA_PRIVATE_KEY="5C1y..."
export ZERION_X402_PREFER_SOLANA=true  # optional: prefer Solana when both are set

Then use the --x402 flag:

zerion wallet analyze 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 --x402

Or enable x402 globally:

export ZERION_X402=true
zerion wallet analyze 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045

Option C: MPP Pay-per-call

No API key needed. Pay $0.01 USDC per request via the MPP protocol on Tempo. The CLI handles the payment handshake automatically.

Like Option B, pay-per-call applies only to analytics commands. Trading commands always use an API key.

export WALLET_PRIVATE_KEY="0x..."   # EVM private key with USDC on Tempo

Or use a dedicated key:

export TEMPO_PRIVATE_KEY="0x..."

Then use the --mpp flag:

zerion portfolio 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 --mpp

Or enable MPP globally:

export ZERION_MPP=true
zerion portfolio 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045

2. Install skills (Claude Code, Cursor, OpenClaw)

npx skills add zeriontech/zerion-ai

This installs 4 skills into your agent:

| Skill | Description | |-------|-------------| | wallet-analysis | Analyze wallets: portfolio, positions, transactions, PnL | | wallet-trading | Swap, bridge, buy/sell tokens, wallets, agent tokens, policies | | chains | List supported blockchain networks | | zerion | CLI setup, authentication, and troubleshooting |

The skills reference zerion which runs via npx zerion (no global install needed).

3. Choose your integration path

MCP clients

Use this if your agent runtime already supports MCP.

Start here:

OpenClaw and CLI-based agents

Use this if your framework models tools as shell commands returning JSON.

npm install -g zerion
zerion wallet analyze 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045

Start here:

4. Run the first wallet analysis

MCP quickstart

  1. Export your API key:

    export ZERION_API_KEY="zk_dev_..."
  2. Add the hosted Zerion MCP config from examples/cursor/mcp.json or examples/claude/mcp.json

  3. Ask:

    Analyze the wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045.
    Summarize total portfolio value, top positions, recent transactions, and PnL.

CLI quickstart

With API key:

npm install -g zerion
export ZERION_API_KEY="zk_dev_..."
zerion wallet analyze 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045

With x402 (no API key needed):

npm install -g zerion
export WALLET_PRIVATE_KEY="0x..."   # or base58 for Solana
zerion wallet analyze 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 --x402

Example output:

{
  "wallet": {
    "query": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
  },
  "portfolio": {
    "total": 450000,
    "currency": "usd"
  },
  "positions": {
    "count": 42
  },
  "transactions": {
    "sampled": 10
  },
  "pnl": {
    "available": true
  }
}

Example wallets

This repo uses the same public wallets across examples:

  • vitalik.eth / 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
  • ENS DAO treasury / 0xFe89Cc7Abb2C4183683Ab71653c4cCd1b9cC194e
  • Aave collector / 0x25F2226B597E8F9514B3F68F00F494CF4F286491

What ships in this repo

  • skills/: 4 agent skills installable via npx skills add zeriontech/zerion-ai
    • wallet-analysis/: portfolio, positions, transactions, and PnL analysis
    • wallet-trading/: swap, bridge, buy/sell, wallets, agent tokens, policies
    • chains/: supported blockchain networks reference
    • zerion/: CLI setup, auth, and troubleshooting
  • mcp/: hosted Zerion MCP setup plus the tool catalog
  • cli/: zerion unified CLI — wallet analysis + trading (published to npm)
  • examples/: Cursor, Claude, OpenAI Agents SDK, raw HTTP, and OpenClaw setups

Failure modes to expect

Both the MCP and CLI surfaces should handle:

  • missing or invalid API key
  • invalid wallet address
  • unsupported chain filter
  • empty wallets / no positions
  • rate limits (429)
  • upstream timeout or temporary unavailability

See mcp/README.md and cli/README.md for the concrete behavior used in this repo.