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

@more-md/mcp-memory

v0.1.1

Published

Portable long-term memory for AI assistants, as an MCP server. Connect Claude Desktop, Cursor, or any MCP client to a mem.more.md memory the user controls.

Downloads

266

Readme

@more-md/mcp-memory

Portable long-term memory for AI assistants, as an MCP server.

Connect it once and your assistant remembers things across chats. The same memory follows you from Claude to Cursor to any other MCP-capable client. You hold the key, a short PIN. The memory is encrypted at rest and lives at a URL you control, mem.more.md.

Why an MCP server

Telling a chat model to "fetch this URL and use it as your memory" looks exactly like a prompt-injection attack: a web page instructing the assistant to persist your data somewhere. Well-aligned models refuse it, and they should.

An MCP server works the other way around:

  • You add this server to your assistant's config, with your memory URL and PIN. You set that connection up by hand, and that is the authorization.
  • The assistant calls typed tools (remember, recall). It never treats a fetched web page as instructions.
  • Every call runs over HTTPS and is authed with your PIN. Your data goes only to the memory URL you configured.

Get your memory URL and PIN

Visit mem.more.md, or ask any assistant that already minted a session for you. You get a URL like https://mem.more.md/AbC12xyz and a 4-digit PIN. Keep the pair. That is your portable memory.

Connect it

Claude Desktop, Claude Code, Cursor, and most MCP clients

Add this to your MCP config (claude_desktop_config.json, .cursor/mcp.json, .mcp.json). This uses the published npm package:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": ["-y", "@more-md/mcp-memory"],
      "env": {
        "MEM_URL": "https://mem.more.md/AbC12xyz",
        "MEM_PIN": "1234"
      }
    }
  }
}

To run from a local checkout instead:

{
  "mcpServers": {
    "memory": {
      "command": "node",
      "args": ["/absolute/path/to/packages/mcp-memory/dist/index.js"],
      "env": { "MEM_URL": "https://mem.more.md/AbC12xyz", "MEM_PIN": "1234" }
    }
  }
}

Restart the client. A memory server shows up with three tools.

Tools

| Tool | What it does | |------|--------------| | remember | Save a memory (title, body, memory_type: episodic or semantic, importance 1 to 10). | | recall | Search your memory by keyword or meaning before answering about the past. | | recall_day | Read everything saved on a given calendar day. |

The assistant decides when to call these. A good one saves durable facts (your name, preferences, projects) as semantic and checks recall before answering questions about earlier context. You can always tell it to save or forget something specific.

Privacy

  • Encrypted at rest, reachable only with your PIN.
  • Export or delete everything anytime (/export, delete tools and endpoints).
  • Open source. Nothing is stored that you didn't ask for.

Develop

npm install
npm run build      # builds dist/
npm test           # unit tests with mocked fetch

MIT © more.md