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

memgc-js

v0.4.0-alpha.5

Published

Self-hostable agentic memory for production agents — PRISM-based recall, calibrated decay, audit trail. Node.js bindings for the memgc Python library.

Readme

memgc — Node.js bindings

Self-hostable agentic memory for production agents. Your agents remember things. Over time they remember too much, get confused, and cost a fortune. memgc throws away the old stuff intelligently — so your agents stay sharp, fast, and cheap. Runs on your own server.

This npm package is a thin Node.js wrapper around the memgc Python library. It spawns a Python subprocess and exchanges line-delimited JSON-RPC over stdin and stdout — no native binaries, no compilation, runs anywhere Python ≥ 3.12 is installed.

Install

# 1. Install the Python core (one-time, system-wide or per-user)
pip install memgc
# or:  uv add memgc

# 2. Install the Node bindings
npm install memgc

If python3 is not on your PATH as python3, set MEMGC_PYTHON=/path/to/your/python before importing.

Quickstart

const { MemGC } = require('memgc');

(async () => {
  const mc = await MemGC.open('./mydb');

  await mc.extract([
    { speaker: 'Alice', content: 'I moved to Lisbon in March 2024.', date: '2024-03-15' },
  ]);

  const ans = await mc.answer('Where does Alice live now?');
  console.log(ans.text);             // synthesized answer
  console.log(ans.memories.length);  // supporting evidence count

  await mc.close();
})();

API

All methods return Promises. The five primitives match the Python package exactly:

| Method | Returns | | --- | --- | | MemGC.open(path) | Promise<MemGC> | | mc.extract(messages, sessionDate?) | Promise<string[]> — ids of new memories | | mc.consolidate(messages) | Promise<string> — YAML AgentState snapshot | | mc.dreaming({ threshold?, half_life_days?, dry_run? }) | Promise<DreamStats> | | mc.answer(question, { k_pool?, n_iterations?, n_samples?, use_reranker?, verbose? }) | Promise<Answer> | | mc.close() | Promise<void> |

Answer is { text, memories[], elapsed_s, tokens: { input, output } }.

Configuration

LLM and embedder configuration lives in the Python process — set your provider keys via a .env file at the directory where you spawn Node, or via environment variables (AZURE_OPENAI_*, OPENAI_API_KEY, etc.). See the Python README for the full list.

Implementation notes

  • One MemGC.open() call spawns one Python subprocess. The subprocess lives until close() (or the parent Node process exits).
  • Concurrent calls on a single MemGC are serialized by Python — this matches the Python library's threading model. Open multiple instances for true parallelism.
  • Set MEMGC_DEBUG=1 to forward the Python subprocess's stderr to your Node stderr.

License

MIT