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

memory-server-mcp

v1.0.2

Published

A Model Context Protocol (MCP) server for persistent memory storage with tagging, search, and linking capabilities

Readme

Memory Server MCP

A MCP server for persistent memory storage with advanced features like tagging, timestamping, expiration, content search, and inter-memory linking. Built for integration with MCP clients like Claude for Desktop.

Features

  • Save/Update Memories (save_memory): Store or update a memory with a unique key and value. Supports optional tags and expiration settings.

    • key (string): Unique identifier for the memory.
    • value (string): The content of the memory.
    • tags (array of strings, optional): A list of tags to associate with the memory. If provided, replaces existing tags. Pass an empty array to remove all tags.
    • expires_in_seconds (number, optional): The number of seconds until this memory expires. Pass 0 or a negative number to remove expiration.
  • Recall Memory (recall_memory): Retrieve a memory by its key, including its value, associated tags, creation timestamp, last updated timestamp, and expiration timestamp.

  • List Memories (list_memories): List all non-expired memory keys. Optionally, filter memories by a specific tag.

    • tag (string, optional): Filter memories by this tag.
  • Delete Memory (delete_memory): Permanently remove a memory by its key. Also removes any links pointing to the deleted memory.

  • List All Tags (list_all_tags): Get a list of all unique tags currently in use across all non-expired memories.

  • Search Memory Content (search_memory_content): Search for memories whose content (value) contains a given query string (case-insensitive, non-expired memories only).

  • Link Memories (link_memories): Create a directed link from a source memory to a target memory with a specified relationship type.

    • source_key (string): The key of the memory from which the link originates.
    • target_key (string): The key of the memory to which the link points.
    • relationship_type (string): The type of relationship (e.g., related_to, depends_on, is_part_of).
  • Get Linked Memories (get_linked_memories): Retrieve a list of memories linked from a given source memory, optionally filtered by relationship type.

Installation & Usage

Quick Start with npx (Recommended)

npx memory-server-mcp

Global Installation

npm install -g memory-server-mcp
memory-server-mcp

Usage with MCP Clients

Claude for Desktop

  1. Add MCP Server Configuration: In your Claude for Desktop settings, add a new MCP server:

    {
      "mcpServers": {
        "memory": {
          "command": "npx",
          "args": ["memory-server-mcp"]
        }
      }
    }
  2. Restart Claude for Desktop to load the new server.

  3. Start using memory commands in your conversations with Claude.

Example Usage

Once connected to an MCP client, you can use commands like:

Save a memory about my project:
Key: project_status
Value: Working on memory server MCP, almost ready for release
Tags: work, mcp, nodejs

Recall what I saved about my project status.

Search for memories containing "nodejs".

Link my project memory to related technologies.