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

@nova-mcp/mcp-nova

v1.0.3

Published

Zero-config AI project memory with live file watching and MCP integration

Readme

Nova Memory

Local-first persistent memory for AI assistants. Store context across sessions with SQLite.

npm version License: MIT

What is Nova Memory?

Nova Memory is an MCP (Model Context Protocol) server that gives AI assistants persistent memory. It stores your project context, decisions, and knowledge locally in SQLite - no cloud, no telemetry. Your data stays on your machine.

Features

  • 22 MCP tools for memory, search, analysis, and task management
  • Store and search memories with BM25 full-text search
  • Knowledge graph with relationship traversal
  • Task management with phases and progress tracking
  • Multi-project support with cross-project queries
  • Enable/disable individual tools via configuration
  • Complete TypeScript implementation with Zod validation

Installation

npm install -g @nova-mcp/mcp-nova

Setup

Claude Desktop

Add to your config file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "nova-memory": {
      "command": "npx",
      "args": ["@nova-mcp/mcp-nova"]
    }
  }
}

Claude Code

claude mcp add nova-memory -- npx @nova-mcp/mcp-nova

Available Tools

Memory Tools (8)

| Tool | Description | |------|-------------| | store_memory | Store content with type, tags, and path tracking | | memory_search | Full-text search with BM25 ranking | | memory_query | Filter by type, tags, project, or path | | memory_stats | Storage statistics and memory counts | | memory_delete | Remove memories by ID | | memory_tags | List all tags with usage counts | | memory_export | Export memories as JSON or markdown | | memory_import | Bulk import memories from JSON |

Search Tools (4)

| Tool | Description | |------|-------------| | search_semantic | Semantic similarity search | | search_patterns | Find recurring patterns in memories | | search_temporal | Time-based memory analysis | | search_relationships | Explore memory connections |

Analysis Tools (4)

| Tool | Description | |------|-------------| | analysis_conflicts | Detect contradictions between memories | | analysis_memory_map | Generate memory visualization | | analysis_anomalies | Find unusual patterns | | analysis_forecast | Predict memory patterns |

Task Tools (3)

| Tool | Description | |------|-------------| | task_management | Create tasks, phases, track progress | | task_board | Visual overview of pending/active/completed | | task_insights | AI-powered task analytics |

Advanced Tools (2)

| Tool | Description | |------|-------------| | knowledge_graph | Build and query relationship graphs | | project_profile | Store project architecture and stack info |

Maintenance Tools (1)

| Tool | Description | |------|-------------| | memory_compact | Optimize and compact storage |

Configuration

Create .nova/config.json in your project root:

{
  "storage": {
    "mode": "project"
  },
  "features": {
    "taskManagement": true,
    "knowledgeGraph": true
  },
  "tools": {
    "search_patterns": true,
    "analysis_conflicts": true,
    "project_profile": true
  }
}

Storage Modes

| Mode | Description | |------|-------------| | project | Store in .nova/memory.db (default) | | global | Store in ~/.nova-memory/memory.db | | multi | Query across multiple project databases |

Multi-Project Configuration

{
  "storage": {
    "mode": "multi",
    "multiProject": {
      "enabled": true,
      "includePaths": ["~/projects/api", "~/projects/web"]
    }
  }
}

Storage Location

All data stored locally in SQLite:

  • Project mode: .nova/memory.db in project root
  • Global mode: ~/.nova-memory/memory.db in home directory

No cloud services. No external API calls. No telemetry.

Troubleshooting

  • Tools not showing: Restart Claude Desktop/Code after installation
  • Command not found: Run npm install -g @nova-mcp/mcp-nova or check PATH
  • NVM users: Use full path to node in MCP config
  • Permission errors: Ensure write access to .nova or home directory
  • Version check: Run mcp-nova --version to verify installation

Links

License

MIT