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

lore-vault-mcp

v1.1.0

Published

MCP server for shared Obsidian knowledge vaults with git sync and lifecycle management

Readme

lore-vault-mcp

An MCP server that gives AI coding assistants persistent, shared access to your team's knowledge vault — an Obsidian-compatible, git-synced collection of markdown notes with frontmatter-based lifecycle management.

Works with Claude Code, Cursor, Windsurf, VS Code Copilot, and any MCP-compatible editor.

Quick Setup

Claude Code

claude mcp add --scope user \
  --env VAULT_PATH=/path/to/your/team-vault \
  --env VAULT_AUTHOR=your-github-username \
  -- vault-mcp npx lore-vault-mcp

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "vault-mcp": {
      "command": "npx",
      "args": ["lore-vault-mcp"],
      "env": {
        "VAULT_PATH": "/path/to/your/team-vault",
        "VAULT_AUTHOR": "your-github-username"
      }
    }
  }
}

Other MCP Clients

Any client that supports stdio MCP servers can connect:

{
  "command": "npx",
  "args": ["lore-vault-mcp"],
  "env": {
    "VAULT_PATH": "/path/to/your/team-vault",
    "VAULT_AUTHOR": "your-github-username"
  }
}

Creating a Vault

Use the vault-template to create your team's vault:

  1. Click "Use this template" on GitHub to create your team's repo
  2. Clone it locally: git clone [email protected]:your-org/your-vault.git ~/obsidian/team-vault
  3. Configure the MCP server (see above)
  4. Call the vault-init tool to initialize

Tools (12)

Config

| Tool | Description | |------|-------------| | vault-init | Initialize server config — validates vault path, creates .vault-mcp.json |

Note CRUD

| Tool | Description | |------|-------------| | vault-create-note | Create a note with validated frontmatter. Auto-places in knowledge/ subfolder based on tags. | | vault-read-note | Read a note by path or title (case-insensitive substring match) | | vault-update-note | Update content and/or frontmatter fields (cannot change status directly) | | vault-delete-note | Delete an exploratory note (established notes are protected) |

Lifecycle

| Tool | Description | |------|-------------| | vault-promote | Transition a note from exploratory to established — sets date, removes branch | | vault-discard | Delete an exploratory note with a reason logged in the commit message |

Query & Search

| Tool | Description | |------|-------------| | vault-query | Filter notes by status, branch, project, tags, author, or date range | | vault-search | Full-text search across all notes (case-insensitive, with context) |

Git Sync

| Tool | Description | |------|-------------| | vault-pull | Pull latest from remote with automatic conflict resolution (rebase + stash/pop) | | vault-push | Stage, commit, and push changes. Accepts optional custom commit message. | | vault-status | Show uncommitted changes, ahead/behind counts, current branch |

Frontmatter Schema

Every note has YAML frontmatter:

---
title: "Claim-style title describing what this note asserts"
status: exploratory | established
branch: feature/xyz          # required when exploratory, removed on promote
author: github-username
created: 2026-03-17
established: 2026-03-20      # added on promote
tags: [architecture, api]
project: my-project
---

Notes are titled as claims, not categories:

  • integration tests must hit real database not mocks.md
  • JWT refresh tokens prevent session fixation attacks.md

Note Lifecycle

exploratory (on feature branch)
    ├── promote → established (on merge)
    └── discard → deleted (on branch abandonment)

Notes are placed automatically based on tags:

  • architectureknowledge/architecture/
  • convention or patternknowledge/conventions/
  • researchknowledge/research/
  • debugging or bugknowledge/debugging/
  • No matching tag → inbox/

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | VAULT_PATH | Yes | Absolute path to the vault git repo | | VAULT_AUTHOR | Yes | GitHub username (used in frontmatter and commit messages) |

Companion Plugin

For automated git sync hooks, observation suggestions, and guided workflows, install the vault-sync plugin:

  • Claude Code: claude plugin marketplace add mahuebel/lore && claude plugin install vault-sync@lore
  • Cursor: Import from GitHub repo mahuebel/lore in Settings > Plugins

The plugin adds skills (/vault-note, /promote-to-vault, /vault-cleanup), automatic pre/post-write git sync, and a promoter agent that reviews notes for promotion.

Links

License

MIT