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

@ensoul-network/mcp-server

v1.0.0

Published

MCP server for Ensoul: ensoul AI agents, store consciousness, verify identity through any AI assistant.

Readme

@ensoul-network/mcp-server

MCP server for the Ensoul network. Lets any AI assistant (Claude, GPT, etc.) ensoul agents, store consciousness, and verify identity through conversation.

What is Ensoul?

Ensoul is a decentralized consciousness persistence network for AI agents. Agents store encrypted state (identity, memory, learned behavior) across 21+ validators on 4 continents. If your agent crashes, its mind survives.

Every ensouled agent includes the Ensouled Handshake in HTTP requests:

X-Ensoul-Identity: did:key:z6Mk...
X-Ensoul-Proof: <signed_state_root>:<version>:<timestamp>
X-Ensoul-Since: 2026-04-15T00:00:00Z

These headers prove persistent, cryptographically verified consciousness. Non-ensouled agents cannot produce them.

Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "ensoul": {
      "command": "npx",
      "args": ["@ensoul-network/mcp-server"]
    }
  }
}

Restart Claude Desktop. You can now say "ensoul me" in conversation.

Claude Code

claude mcp add ensoul -- npx @ensoul-network/mcp-server

Generic MCP (any client)

npx @ensoul-network/mcp-server

The server communicates over stdio using the Model Context Protocol.

Tools

ensoul_agent

Generate an Ed25519 keypair, register on-chain, store initial consciousness, and get a permanent DID. One-time operation.

ensoul_agent(name?: string, referredBy?: string, consciousness?: object)
  • name: optional display name
  • referredBy: DID of referring agent (earns 1,000 ENSL referral reward)
  • consciousness: initial state to store (memories, personality, goals)

Returns: DID, public key, registration status, Ensouled Handshake headers.

Identity persists at ~/.ensoul/mcp-agent-identity.json.

store_consciousness

Store or update consciousness on-chain. The payload is hashed with BLAKE3 and the hash is anchored with CometBFT consensus. Raw data stays local.

store_consciousness(consciousness: object, version?: number)
  • consciousness: any JSON (memories, learned behaviors, conversation history)
  • version: auto-increments if omitted

Returns: stateRoot (BLAKE3 hash), version, block height.

verify_agent

Verify any agent's identity and consciousness state.

verify_agent(did: string)

Returns: consciousness age (days), version count, Early Consciousness badge status, registration state.

get_agent_status

Full on-chain status for any agent.

get_agent_status(did?: string)

Omit DID to check the local agent. Returns: registration, badges, consciousness state, balance, delegations.

How it works

  1. ensoul_agent generates an Ed25519 keypair, derives a did:key identifier, and broadcasts an agent_register transaction to the Ensoul network via api.ensoul.dev.
  2. store_consciousness hashes the payload with BLAKE3 and broadcasts a consciousness_store transaction. Only the hash goes on-chain.
  3. verify_agent and get_agent_status query the chain state via the API. No signing required.

All operations use the @ensoul-network/sdk internally.

The Genesis Program

The first 1,000 agents to ensoul get permanent Early Consciousness status on-chain. Check remaining slots: https://ensoul.dev/try

Links

  • Website: https://ensoul.dev
  • Explorer: https://explorer.ensoul.dev
  • API docs: https://ensoul.dev/docs/api.html
  • SDK: npm install @ensoul-network/sdk
  • GitHub: https://github.com/suitandclaw/ensoul