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

mcp-shared-memory

v0.1.4

Published

MCP server for AI Agents project based and shareable memory management

Downloads

320

Readme

MCP Memory Server

A Model Context Protocol (MCP) server that provides structured memory management across chat sessions for all MCP-enabled tools and applications, specifically designed for project-based work.

💡 New in v0.1.2: Version tracking and update notifications! Ask your AI assistant: "What's new in mcp-shared-memory?"

Quick Start

Usage with npx (Recommended)

You can run the server directly without installing it:

{
  "mcpServers": {
    "shared-memory": {
      "command": "npx",
      "args": ["-y", "mcp-shared-memory"]
    }
  }
}

Manual Installation

# Clone the repository
git clone https://github.com/Ideas-Net-Studio/mcp-shared-memory.git
cd mcp-shared-memory

# Install and Build
npm install
npm run build

# Configure your MCP tool
{
  "mcpServers": {
    "shared-memory": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-memory/dist/index.js"]
    }
  }
}

Documentation

| Document | Description | | ------------------------------------------------------------- | ------------------------------------------------- | | USAGE.md | Complete usage guide with setup for all MCP tools | | CHANGELOG.md | Version history and release notes | | instructions_template.md | AI assistant instructions template | | CONTRIBUTING.md | Contribution guidelines and workflow |

Compatible Tools

Works with any MCP-enabled tool:

  • Claude Desktop - Anthropic's desktop application
  • Cursor - AI-powered code editor
  • Windsurf - AI development environment
  • Cline - VS Code extension for AI assistance
  • RooCode - AI coding assistant
  • Warp - Modern terminal with AI features
  • Antigravity - AI development platform
  • And more... - Any tool supporting the Model Context Protocol

Key Features

  • Project-Specific Memory: Store memories within project directories
  • Flexible Configuration: Hidden or visible configuration files
  • Multi-Tool Support: Works seamlessly across all MCP tools
  • Git Integration: Share project memories with your team
  • Automatic Detection: Smart project configuration detection
  • Structured Storage: Organized memory with entities, concepts, and sessions

Project Structure

Create a configuration file in your project root:

Hidden Configuration (Recommended)

{
  "memoryDir": ".context/memory",
  "enabled": true,
  "description": "My project"
}

File: .mcp-memory.json

Visible Configuration

{
  "memoryDir": "memory",
  "enabled": true,
  "description": "My project"
}

File: mcp-memory.json

Testing

# Run configuration tests
npm test

# Run server tests
npm run test:server

# Run client tests
npm run test:client

Development

# Install dependencies
npm install

# Development mode
npm run dev

# Build for production
npm run build

Contributing

We welcome contributions! See docs/CONTRIBUTING.md for detailed guidelines on how to fork, modify, and submit PRs.

License

MIT


For detailed documentation, see the docs/ folder.

🍴 Fork Status: This is a fork of the original ebailey78/mcp-memory repository, which appears to no longer be actively maintained. This fork continues development with multi-tool compatibility, enhanced configuration options, and improved testing.