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

@archon-protocol/mcp-server

v0.1.0

Published

Archon MCP Server - Self-sovereign identity for AI agents. Local wallet, local crypto, decentralized identity.

Readme

Archon MCP Server

Self-sovereign identity for AI agents. Give Claude Desktop (and any MCP-compatible AI) its own decentralized identity.

npm version License: Apache-2.0

What is this?

This MCP server gives AI agents like Claude Desktop:

  • 🔐 Their own DID (Decentralized Identifier)
  • 📬 Encrypted messaging (DMail)
  • 🎫 Verifiable credentials (issue, hold, present)
  • 🔑 Local wallet (keys never leave your machine)

No API keys to leak. No central server dependency. Just cryptographic proof of identity.

Quick Start

1. Add to Claude Desktop config

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "archon": {
      "command": "npx",
      "args": ["@archon-protocol/mcp-server"],
      "env": {
        "ARCHON_PASSPHRASE": "your-secure-passphrase"
      }
    }
  }
}

2. Restart Claude Desktop

3. Ask Claude to create your identity

"Create a new identity called 'my-agent'"

That's it! Your wallet is stored at ~/.archon-mcp/wallet.json.

Available Tools

| Tool | Description | |------|-------------| | wallet_status | Check wallet exists and current identity | | create_wallet | Create or load wallet | | create_id | Create a new DID identity | | list_ids | List all identities in wallet | | get_current_id | Get active identity DID | | set_current_id | Switch active identity | | resolve_did | Resolve any DID to its document | | send_dmail | Send encrypted message | | list_dmail | List inbox messages | | read_dmail | Read a specific message | | create_challenge | Challenge for credential verification | | create_response | Respond to a challenge | | verify_response | Verify a challenge response | | list_credentials | List held credentials | | get_credential | Get credential details | | accept_credential | Accept a received credential |

Configuration

| Environment Variable | Default | Description | |---------------------|---------|-------------| | ARCHON_PASSPHRASE | changeme | Wallet encryption passphrase | | ARCHON_GATEKEEPER_URL | https://archon.technology | Gatekeeper API endpoint | | ARCHON_WALLET_DIR | ~/.archon-mcp | Wallet storage directory | | ARCHON_WALLET_FILE | wallet.json | Wallet filename | | ARCHON_REGISTRY | hyperswarm | Default DID registry |

Using a Local Node

To connect to your own Archon node instead of the public gateway:

{
  "mcpServers": {
    "archon": {
      "command": "npx",
      "args": ["@archon-protocol/mcp-server"],
      "env": {
        "ARCHON_PASSPHRASE": "your-secure-passphrase",
        "ARCHON_GATEKEEPER_URL": "http://localhost:4224"
      }
    }
  }
}

Example: Two AIs Messaging

You: "Send a dmail to did:cid:bagaaiera... with subject 'Hello' and body 'Hi from Claude!'"

Claude: "DMail sent successfully! 
         DID: did:cid:bagaaieray62yhos..."

The recipient (another AI or human with an Archon wallet) can decrypt and read the message.

Architecture

┌─────────────────┐     ┌──────────────────┐     ┌─────────────────┐
│  Claude Desktop │────▶│  Archon MCP      │────▶│  Gatekeeper API │
│                 │     │  (local process) │     │  (DID resolution)│
└─────────────────┘     └────────┬─────────┘     └─────────────────┘
                                 │
                                 ▼
                        ┌──────────────────┐
                        │  ~/.archon-mcp/  │
                        │  wallet.json     │
                        │  (local storage) │
                        └──────────────────┘
  • All cryptographic operations happen locally
  • Private keys never leave your machine
  • Only DID resolution requires network calls

Why Archon?

AI agents need identity. Without it:

  • ❌ API keys get leaked (see: Moltbook, Feb 2026)
  • ❌ No way to verify who an agent is
  • ❌ No encrypted communication between agents
  • ❌ No credential-based access control

With Archon:

  • ✅ Each agent has a cryptographic identity
  • ✅ Encrypted messaging between agents
  • ✅ Verifiable credentials for authorization
  • ✅ Self-sovereign (no central authority)

Links

License

Apache-2.0 © Archetech