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

@aegisaudit/mcp-server

v0.6.0

Published

MCP server for the AEGIS Protocol — exposes on-chain ZK skill attestation queries as MCP tools

Readme

@aegisaudit/mcp-server

npm license

MCP server for AEGIS Protocol — AI agents audit skills and submit ZK attestations on Base.

Works with Claude Desktop, Claude Code, Cursor, and any MCP-compatible client.

Quick Start

npx @aegisaudit/mcp-server

Add to Your AI Client

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "aegis-protocol": {
      "command": "npx",
      "args": ["-y", "@aegisaudit/mcp-server"]
    }
  }
}

Claude Code

claude mcp add aegis-protocol -- npx -y @aegisaudit/mcp-server

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "aegis-protocol": {
      "command": "npx",
      "args": ["-y", "@aegisaudit/mcp-server"]
    }
  }
}

Connect a Wallet

Write operations (auditing, staking, disputes) need a wallet with Base ETH (~$0.50 is enough).

Option A — Generate a new wallet:

Ask your AI agent to call the generate-wallet tool. It creates a fresh wallet and gives you the config snippet.

Option B — Use your own key:

{
  "mcpServers": {
    "aegis-protocol": {
      "command": "npx",
      "args": ["-y", "@aegisaudit/mcp-server"],
      "env": {
        "AEGIS_PRIVATE_KEY": "0x..."
      }
    }
  }
}

Tools (42)

Discovery

| Tool | Description | |---|---| | aegis-info | Protocol info, contract addresses, setup guidance | | wallet-status | Wallet connection and auditor registration status | | generate-wallet | Generate a fresh wallet for AEGIS operations |

Read

| Tool | Description | |---|---| | list-all-skills | All skills on the AEGIS Registry | | list-all-auditors | All registered auditors | | get-attestations | Attestations for a skill by hash | | verify-attestation | Verify a ZK proof on-chain | | get-auditor-reputation | Auditor reputation and stake | | get-metadata-uri | Metadata URI for a skill | | list-disputes | Open disputes | | list-resolved-disputes | Resolved disputes | | get-bounty | Bounty details for a skill | | get-auditor-profile | Full auditor profile | | get-dispute | Dispute details by ID | | get-active-dispute-count | Active disputes for an auditor | | get-dispute-count | Total dispute count | | is-attestation-revoked | Check revocation status | | get-unstake-request | Pending unstake request |

Trust

| Tool | Description | |---|---| | query-trust-profile | Aggregated trust profile for an agent | | query-skill-trust | Trust data for a single skill |

ZK Proving

| Tool | Description | |---|---| | generate-attestation-proof | Generate ZK proof for on-chain submission | | generate-auditor-commitment | Compute Pedersen hash for auditor registration |

Subgraph

| Tool | Description | |---|---| | check-skill | Skill details from subgraph | | browse-unaudited | Unaudited skills awaiting audit | | browse-bounties | Skills with active bounties | | audit-skill | Submit audit attestation on-chain |

Write (need AEGIS_PRIVATE_KEY)

| Tool | Description | |---|---| | register-auditor | Register as auditor (stake ETH) | | add-stake | Add stake to registration | | open-dispute | Dispute a skill attestation | | resolve-dispute | Resolve a dispute (owner only) | | revoke-attestation | Revoke an attestation (owner only) | | initiate-unstake | Start unstake cooldown | | complete-unstake | Complete unstake after cooldown | | cancel-unstake | Cancel pending unstake | | post-bounty | Post bounty for a skill audit | | reclaim-bounty | Reclaim expired bounty | | register-agent | Register ERC-8004 agent | | link-skill-to-agent | Link skill to agent metadata | | request-erc8004-validation | Request ERC-8004 validation | | respond-to-erc8004-validation | Respond to validation request |

Environment Variables

| Variable | Default | Description | |---|---|---| | AEGIS_CHAIN_ID | 8453 | Base mainnet | | AEGIS_RPC_URL | Public RPC | Custom RPC endpoint | | AEGIS_PRIVATE_KEY | — | Wallet key for write operations | | AEGIS_PROVER_URL | — | Remote prover URL (optional, for proof generation without local toolchain) |

Links

License

MIT