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

coolmem

v1.0.2

Published

Cross-Agent Memory Fabric — a privacy-first MCP server for shared AI memory with local vector embeddings.

Readme

🧠 coolmem — Cross-Agent Memory Fabric

A privacy-first MCP server that lets different AI agents (Cursor, Claude Desktop, etc.) share a persistent Knowledge Ledger — powered by local vector embeddings and SQLite.

No API keys. No data leaves your machine.


Architecture at a Glance

Agent A (Cursor)                 Agent B (Claude)
     │                                │
     │  store_memory(content, cat)    │  search_memories(query)
     ▼                                ▼
┌──────────────  MCP  stdio  ─────────────────┐
│               coolmem server                │
│  ┌────────────────────────────────────────┐ │
│  │  @xenova/transformers                  │ │
│  │  all-MiniLM-L6-v2 (384-dim, local CPU) │ │
│  └────────────────┬───────────────────────┘ │
│                   │  embed()                 │
│  ┌────────────────▼───────────────────────┐ │
│  │  SQLite  (coolmem.db)                  │ │
│  │  Memory { id, content, category,       │ │
│  │           embedding JSON, createdAt }  │ │
│  └────────────────────────────────────────┘ │
└─────────────────────────────────────────────┘

Quick Start

# 1. Install dependencies
npm install

# 2. Generate Prisma client + create the SQLite DB
npx prisma generate
npx prisma db push

# 3. Build
npm run build

# 4. Run (for manual testing)
node dist/index.js

The server communicates over stdio — you don't call it directly. Hook it into Claude Desktop or Cursor via the config below.


Connecting to Claude Desktop

Open (or create) your claude_desktop_config.json:

  • macOS / Linux: ~/.config/claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the following block (adjust the path to match where you cloned this repo):

{
  "mcpServers": {
    "coolmem": {
      "command": "node",
      "args": ["C:/Users/Dell/Desktop/YCU/coolmem/dist/index.js"],
      "env": {
        "DATABASE_URL": "file:C:/Users/Dell/Desktop/YCU/coolmem/coolmem.db"
      }
    }
  }
}

Tip: After editing the config, restart Claude Desktop. You should see coolmem appear in the Connected Servers list.


Connecting to Cursor

In Cursor → Settings → MCP → Add New MCP Server:

| Field | Value | |---------|------------------------------------------------------------| | Name | coolmem | | Command | node | | Args | C:/Users/Dell/Desktop/YCU/coolmem/dist/index.js | | Env | DATABASE_URL=file:C:/Users/Dell/Desktop/YCU/coolmem/coolmem.db |


Available MCP Primitives

🔧 Tool: store_memory

Store a lesson learned, architectural decision, or any project knowledge.

| Parameter | Type | Description | |------------|--------|------------------------------------------------------| | content | string | The knowledge text to persist | | category | string | Label: architecture, bug-fix, decision, etc. |

Example agent prompt:

Use the store_memory tool. content: "We switched from REST to tRPC because it eliminates manual type duplication between client and server." category: "architecture"


🔧 Tool: search_memories

Semantically search the ledger with a natural-language query.

| Parameter | Type | Description | |-----------|--------|-------------------------------| | query | string | What you want to know about |

Returns the top 3 most relevant memories with cosine-similarity scores.

Example agent prompt:

Use search_memories. query: "Why did we change our API layer?"


📄 Resource: project_timeline

URI: memory://coolmem/timeline

A chronological list of the last 10 things the agents stored — useful for onboarding a fresh agent to the current state of a project.


Project Structure

coolmem/
├── src/
│   ├── index.ts          # MCP server — tools & resource definitions
│   ├── embeddings.ts     # @xenova/transformers wrapper (lazy singleton)
│   ├── similarity.ts     # Cosine similarity function
│   └── db.ts             # Prisma client singleton
├── prisma/
│   └── schema.prisma     # Memory model → SQLite
├── dist/                 # Compiled output (git-ignored)
├── models/               # Cached model weights (auto-downloaded, git-ignored)
├── coolmem.db            # SQLite database (git-ignored)
├── .env                  # DATABASE_URL
├── package.json
└── tsconfig.json

First-Run Note on Model Download

On the very first call to either tool, @xenova/transformers will download all-MiniLM-L6-v2 (~22 MB) into the ./models/ folder. Subsequent calls use the cached weights instantly. This is a one-time cost.


Extending This Server

| Want to add… | How | |-------------------------------|------------------------------------------------------------------| | Delete a memory | Add a delete_memory(id) tool via server.tool() | | List memories by category | Add a list_memories(category) tool | | More search results | Change .slice(0, 3) to .slice(0, N) in index.ts | | Faster vector search at scale | Swap the JS cosine loop for sqlite-vss or usearch | | Different model | Change MODEL_NAME in embeddings.ts |