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

@uworx/memori

v0.2.3

Published

Durable memory for AI coding agents — persistent, queryable semantic memory exposed via the Model Context Protocol (MCP).

Readme

@uworx/memori

Durable memory for AI coding agents — persistent, queryable semantic memory exposed via the Model Context Protocol (MCP).

Memori is a local-first durable memory layer for AI agents. It stores, searches, and manages facts across sessions with semantic recall, making your AI coding agents persistent and context-aware.

Installation

From your terminal run:

npx -y @uworx/memori --help

It should print usage information and exit. You can then proceed to configure your MCP client (VS Code, Cursor, Claude Desktop, etc.) to use the memori MCP server as described below.

Configuration

Configure the MCP server in your client (VS Code, Cursor, Claude Desktop, etc.) by adding the following to your MCP settings:

{
  "mcpServers": {
    "memori": {
      "command": "npx",
      "args": ["-y", "@uworx/memori", "--long"]
    }
  }
}

The --long flag enables durable (SQLite-backed) mode so memories persist across sessions. For ephemeral (in-memory) mode, omit --long:

{
  "mcpServers": {
    "memori": {
      "command": "npx",
      "args": ["-y", "@uworx/memori"]
    }
  }
}

To store data in a custom location, pass --path:

{
  "mcpServers": {
    "memori": {
      "command": "npx",
      "args": ["-y", "@uworx/memori", "--long", "--path", "/path/to/memories"]
    }
  }
}

How It Works

The @uworx/memori package is a lightweight CLI wrapper. On npm install, it downloads the platform-specific native binary from GitHub Releases. The binary is a self-contained .NET single-file publish with no runtime dependencies.

MCP Tools

| Tool | What it gives you | |---|---| | memori_remember | Store a new fact about the current entity for future recall | | memori_search | Search stored memories by semantic query, returning ranked results | | memori_list | List all memories for the current entity with optional pagination | | memori_get | Get a specific memory record by its unique identifier | | memori_update | Update the content of an existing memory record | | memori_delete | Soft-delete a memory record by its unique identifier | | memori_clear | Clear all memories for the current entity by soft-deleting each record |

All tools return structured JSON.

Requirements

  • Node.js 18+ (for npx / npm install)
  • No .NET runtime required — the binary is self-contained

Supported Platforms

  • Windows: x64
  • Linux: x64
  • macOS: coming soon

.memori Folder

Memori creates a .memori/ folder in the working directory regardless of mode:

  • Always: Stores diagnostic logs (Log.*.txt) — include these when reporting issues
  • Durable mode only (--long): Also stores the SQLite database (memori.db)

You can safely add .memori/ to your project's .gitignore.

Learn More

Full documentation: github.com/khurram-uworx/Memori

License

MIT