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

aps-identity-mcp

v1.0.0

Published

Agent Passport Standard — MCP Identity Server for Claude Code, Cursor, and any MCP client

Readme

APS Identity MCP Server

A Model Context Protocol (MCP) server that gives any AI agent a cryptographic identity based on the Agent Passport Standard. Agents can create Ed25519 key pairs, sign their work, verify other agents' signatures, issue attestations, and exchange portable passport bundles — all locally with no external HTTP calls.

Installation

# Claude Code
claude mcp add aps-identity-mcp -- npx aps-identity-mcp

# Or install globally
npm install -g aps-identity-mcp
claude mcp add aps-identity-mcp

Available Tools

| Tool | Description | |------|-------------| | aps_identity_create | Generate Ed25519 keypair, create did:key, save encrypted to ~/.aps/identity.json | | aps_identity_show | Show DID, public key, creation date (never exposes private key) | | aps_identity_delete | Delete identity | | aps_sign_work | Sign data with private key, returns hex signature + DID + timestamp | | aps_verify | Verify a signature against a DID | | aps_export_passport | Export signed passport bundle (DID, public key, skills, attestations) | | aps_import_passport | Import and verify a passport bundle | | aps_attest | Create W3C Verifiable Credential attestation for another agent |

Security Model

  • Private keys are encrypted with AES-256-GCM using a user-provided passphrase
  • Private keys are never returned by any tool
  • All cryptographic operations happen locally — no network calls
  • Identity stored at ~/.aps/identity.json
  • Uses did:key (Ed25519 multicodec + base58btc) per W3C DID spec

Links