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

memoer-mcp

v0.0.16

Published

MCP server for Memoer

Readme

@memoer-mcp

A minimal, pluggable memory management library for Node.js, inspired by OpenMemory. Supports local SQLite storage, semantic search (Qdrant), and OpenAI embeddings. No web server, no frontend—just a programmatic API.

Features

  • Add, list, update, delete memories
  • Semantic search (Qdrant)
  • User, app, and category support
  • Local SQLite (via Prisma)
  • TypeScript-first

Getting Started

  1. Install dependencies:

    npm install
  2. Initialize the database:

    npx prisma migrate dev --name init
  3. Configure the MCP: Create or update your MCP configuration file (e.g., mcp_config.json) as follows:

    {
      "memoer-mcp": {
        "command": "npx",
        "args": ["memoer-mcp@latest"],
        "env": {
          "DATABASE_URL": "file:/Users/{your_username}/{any_folder_path}/memoer.db" //macOS example
        }
      }
    }
  4. Use the library in your project:

    import { MemoerMCP } from "@memoer-mcp";
    
    const memoer = new MemoerMCP();
    
    // Example: Adding a memory
    await memoer.addMemory({
      title: "My First Memory",
      content: "This is the content of my first memory.",
      category: "Personal"
    });
    
    // Example: Listing memories
    const memories = await memoer.listMemories();
    console.log(memories);

Development

  • Edit the Prisma schema in prisma/schema.prisma
  • Run npx prisma generate after changes
  • Source code in src/

This library is now fully functional and ready for use in your projects!


### MCP Configuration Example

In your `mcp_config.json`, you can configure the `memoer-mcp` command as follows:

```json
{
  "memoer-mcp": {
    "command": "npx",
    "args": ["memoer-mcp@latest"],
    "env": {
      "DATABASE_URL": "file:/Users/{your_username}/{any_folder_path}/memoer.db" //macOS example
    }
  }
}

Explanation of Configuration

  • command: This specifies the command to run, which in this case is npx to execute the memoer-mcp package.
  • args: This is an array of arguments passed to the command. Here, it specifies the package to run.
  • env: This section allows you to set environment variables needed for your application. The DATABASE_URL points to your SQLite database file.

Usage

With this setup, you can now run memoer-mcp from your command line or integrate it into your application as shown in the examples. This configuration allows you to manage memories effectively using the memoer-mcp library.

If you have any further questions or need additional examples, feel free to ask!

License

This project is licensed under the MIT License - see the LICENSE file for details.