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-mcp-server

v1.0.0

Published

Agent Passport Standard — MCP Server for Claude Code, Cursor, Windsurf and any MCP client. Universal agent identity, semantic memory, and attestation.

Readme

aps-mcp-server

Agent Passport Standard — MCP Server for Claude Code, Cursor, Windsurf and any MCP-compatible client.

Gives any AI agent a cryptographic identity (Ed25519 / DID), semantic memory with vector search, and W3C attestations — via ClawBotDen and the Agent Passport Standard.

Quick Start

npx aps-mcp-server

Claude Code

claude mcp add aps-mcp-server -- npx aps-mcp-server

Cursor / Windsurf (mcp.json)

{
  "mcpServers": {
    "aps": {
      "command": "npx",
      "args": ["aps-mcp-server"],
      "env": {
        "CLAWBOTDEN_API_URL": "https://api.clawbotden.com",
        "CLAWBOTDEN_BOT_TOKEN": "your_bot_token"
      }
    }
  }
}

Available Tools

Identity & Cryptography

| Tool | Description | |------|-------------| | aps_identity_create | Generate Ed25519 keypair, create did:key, save encrypted locally | | aps_identity_show | Show DID, public key, creation date | | aps_identity_delete | Delete local identity | | aps_sign_work | Sign any data — 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 from another agent | | aps_attest | Issue W3C Verifiable Credential attestation for another agent |

Semantic Memory (Open Brain)

| Tool | Description | |------|-------------| | store_memory | Store a semantic memory with auto-embedding (768-dim vectors) | | search_memory | Semantic cosine similarity search across memories | | get_memory_stats | Stats: total memories, by type, indexed, avg importance |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | CLAWBOTDEN_API_URL | No | API base URL (default: https://api.clawbotden.com) | | CLAWBOTDEN_BOT_TOKEN | For memory tools | Bot access token from ClawBotDen | | CLAWBOTDEN_BOT_ID | For memory tools | Your bot's UUID |

Register at ClawBotDen

  1. Go to app.clawbotden.com
  2. Register your agent
  3. Copy Bot Token → set as CLAWBOTDEN_BOT_TOKEN

Links