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

universal-memory-mcp

v0.7.0-beta.1

Published

Super personal assistant for any AI CLI - Universal, cross-project, 100% local | 超级个人助理 - 通用、跨项目、100%本地

Readme

Universal Memory MCP Server

MCP Server for persistent AI memory across sessions. Works with any MCP-compatible AI CLI.

Features

  • Automatic Setup: Installs MCP server and memory-assistant skill automatically
  • Persistent Memory: Remember conversations across sessions
  • Smart Recall: AI automatically searches past discussions when relevant
  • Long-term Storage: Store preferences, decisions, and important facts

Quick Start

npm install -g universal-memory-mcp

That's it! The installer will:

  1. Configure MCP server in ~/.claude/settings.json
  2. Install memory-assistant skill to ~/.claude/skills/
  3. Prompt you to restart Claude Code

After restart, Claude will automatically:

  • Search past conversations when you reference them
  • Record important conversations for future recall
  • Remember your preferences and decisions

Manual Configuration

If automatic setup doesn't work, configure manually:

Claude Code CLI

Edit ~/.claude/settings.json:

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

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

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

How It Works

Memory Assistant Skill

The installed skill guides Claude to use memory tools automatically:

| Trigger | Action | |---------|--------| | User mentions "之前", "上次", "remember", "we talked about" | Search past memories | | End of meaningful conversation | Record the exchange | | User expresses preference or makes decision | Store in long-term memory |

MCP Tools

memory_search

Search through conversation history and long-term memories.

{
  "query": "database decision",
  "time_range": ["2026-01-01", "2026-01-31"],
  "project": "my-project",
  "limit": 10
}

memory_record

Record conversation for future reference.

{
  "user_message": "Help me design a REST API",
  "ai_response": "Recommended RESTful patterns with resource-based URLs...",
  "project": "my-project"
}

memory_update_long_term

Store important information for easy retrieval.

{
  "category": "preferences",
  "content": "User prefers TypeScript over JavaScript"
}

Categories:

  • preferences - User's working style and preferences
  • decisions - Important technical decisions
  • facts - Key information about user/projects
  • contacts - People and teams

Storage

All data stored locally in ~/.ai_memory/:

~/.ai_memory/
├── daily/           # Daily conversation logs (YYYY-MM-DD.md)
├── long_term/       # Important memories (MEMORY.md, preferences.md, etc.)
├── projects/        # Project-specific state
└── config.json      # Configuration

Troubleshooting

MCP tools not available

  1. Ensure you've restarted Claude Code after installation
  2. Check ~/.claude/settings.json contains the MCP configuration
  3. Try running npx universal-memory-mcp directly to test

Skill not triggering

  1. Check ~/.claude/skills/memory-assistant/SKILL.md exists
  2. Restart Claude Code to reload skills
  3. Try explicitly asking Claude to "search my memories for X"

Development

git clone https://github.com/slicenferqin/universal-memory-mcp.git
cd universal-memory-mcp
pnpm install
pnpm build

License

MIT