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

indelible-mcp

v3.1.0

Published

Blockchain-backed memory and code storage for Claude Code. Save AI conversations and source code permanently on BSV.

Readme

Indelible MCP Server

Blockchain-backed memory for Claude Code. Save your AI conversations permanently on BSV.

Quick Start

npm install -g indelible-mcp
indelible-mcp setup

Setup

1. Install & Create Wallet

npm install -g indelible-mcp
indelible-mcp setup

This generates a BSV keypair locally (your private key never leaves your machine) and registers with the Indelible server.

2. Fund Your Wallet

Send a small amount of BSV to the address shown after setup. Any BSV wallet works (HandCash, RelayX, etc.).

3. Add MCP Config to Claude Code

Run indelible-mcp --show-config to get your config, or add this to your Claude Code settings.json:

{
  "mcpServers": {
    "indelible": {
      "command": "indelible-mcp"
    }
  }
}

Usage

Once configured, just talk to Claude Code naturally:

  • "Save this session to blockchain" - saves your conversation
  • "Load my previous context" - restores past sessions
  • "Delta save" - saves only new messages (cheaper, faster)

Auto-Save & Auto-Restore

Indelible automatically saves before Claude Code compacts your context, and restores your sessions after compaction. Nothing is lost.

CLI Commands

indelible-mcp setup              Generate wallet & register
indelible-mcp setup --migrate    Derive API key from existing wallet
indelible-mcp save               Save current session
indelible-mcp save --summary XYZ Save with custom summary
indelible-mcp load               Load context from blockchain
indelible-mcp load --sessions=5  Load N sessions
indelible-mcp status             Show account status
indelible-mcp hook pre-compact   Pre-compaction save hook
indelible-mcp hook post-compact  Post-compaction restore hook

How It Works

  1. Your conversation is encrypted locally with your WIF key
  2. An OP_RETURN transaction is built and signed locally using @bsv/sdk
  3. The signed transaction is broadcast via Indelible's SPV bridge
  4. Your private key never leaves your machine

Security

  • Zero-knowledge encryption - your WIF-derived AES-256-GCM key encrypts all data before it touches the network
  • Self-sovereign keys - generated locally with @bsv/sdk, never transmitted
  • Immutable storage - once on BSV, your data cannot be altered or deleted

Learn More

indelible.one