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

@mootmcp/server

v0.1.0

Published

Self-hosted long-term memory MCP server for AI assistants

Downloads

79

Readme

Moot

Self-hosted long-term memory MCP server for AI assistants. Your memories, your data, your control.

npm version License: MIT

How It Works

~/.moot/memories.db     ← Central database (all memories)
     │
     ├── Project: "myapp"      ← Linked via /Projects/MyApp/.moot
     ├── Project: "blog"       ← Linked via /Projects/Blog/.moot
     └── (global memories)     ← Not scoped to any project

When you work in a directory with a .moot file, all memories are automatically scoped to that project. Global memories (preferences, general knowledge) are always accessible.

Installation

Via npm (recommended)

npm install -g @mootmcp/server

From source

git clone https://github.com/archlinuxusa/moot.git
cd moot
npm install
npm run build

Note: This package uses better-sqlite3 which includes pre-built binaries for most platforms. If installation fails, you may need build tools installed (Python, C++ compiler).

Setup

1. Add to your MCP client config

For Claude Code (~/.claude/settings.json or project .mcp.json):

{
  "mcpServers": {
    "moot": {
      "command": "moot"
    }
  }
}

For Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "moot": {
      "command": "npx",
      "args": ["-y", "@mootmcp/server"]
    }
  }
}

2. Initialize a project

In any project directory, run init_project to create a .moot file:

/Projects/MyApp/
├── .moot              ← Created by init_project
├── src/
└── package.json

The .moot file links that directory to a project in the database:

{
  "project": "MyApp",
  "created": "2024-01-16T..."
}

Tools

| Tool | Description | |------|-------------| | init_project | Create .moot file to link directory to a project | | project_status | Show current project and memory stats | | save_memory | Save content (auto-scoped to current project) | | recall | Search memories (project + global) | | forget | Remove memories by ID or search query | | list_memories | List all memories with pagination |

Usage Examples

Initialize a project:

→ init_project({ name: "my-cool-app" })
Creates .moot file, all future memories scoped to "my-cool-app"

Save a memory:

→ save_memory({ content: "User prefers Tailwind over vanilla CSS" })
Saved to project "my-cool-app"

→ save_memory({ content: "User's name is Chris", global: true })
Saved as global (accessible in all projects)

Recall memories:

→ recall({ query: "CSS preferences" })
Searches "my-cool-app" + global memories

Data Storage

  • Database: ~/.moot/memories.db (SQLite)
  • Project files: .moot in each project directory

Future Plans

  • Semantic search with local embeddings
  • Web dashboard at moot.christopherallen.dev
  • Memory decay/importance over time
  • Export/import tools

License

MIT