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

mdctx

v0.1.0

Published

Zero-ML-dependency keyword index for markdown context files. Fast, git-diffable context retrieval for LLM workspaces — usable as a CLI or an MCP server.

Readme

mdctx

A zero-ML-dependency keyword index for markdown context files. Built for large workspaces where dumping every doc into an LLM's context window wastes tokens — mdctx indexes your markdown once, then answers "which files are relevant to X" in milliseconds, from a flat JSON file you can commit and diff like code.

Why this exists

There are already several MCP servers that index markdown notes with hybrid keyword+semantic search (qmd, dotmd, foam-notes-mcp, and others). mdctx is deliberately narrower than those:

  • No SQLite, no vector DB, no embedding model to download. The index is a single flat JSON file you can read, diff, and review in a PR.
  • Keyword-only by design, using RAKE-style extraction and BM25 ranking — fully deterministic, fully offline, no cost per index update.
  • Cross-model on purpose. Ships as both a CLI (usable from any script or agent that can shell out) and an MCP server (usable by Claude, ChatGPT, Cursor, and anything else that speaks MCP).

If you need semantic/fuzzy matching across large free-text notes, one of the heavier tools above is likely a better fit. If you have a workspace of structured docs and want a fast, transparent, git-friendly index, that's what this is for.

Install

npm install -g mdctx

CLI usage

# Index every .md/.mdx file under a directory (incremental — only
# changed files are re-processed)
mdctx build ./docs

# Search the index
mdctx search "auth flow"
mdctx search "auth flow" --json --limit 3

MCP usage

Add to your MCP client config (e.g. Claude Desktop's claude_desktop_config.json):

{
  "mcpServers": {
    "mdctx": {
      "command": "mdctx-mcp",
      "env": {
        "MDCTX_ROOT": "/absolute/path/to/your/docs"
      }
    }
  }
}

This exposes three tools: search_context, refresh_index, and list_context. search_context auto-heals: if the index is missing, corrupt, or was written by an older mdctx version, it gets rebuilt transparently on the next call rather than erroring out.

Keeping the index up to date automatically

Run this once per repo:

mdctx init ./docs

This wires up everything needed so you never have to remember to run mdctx build by hand:

  • .mdctx.json — records which directory holds your docs and where the index lives, so the hooks and CI job below don't need arguments.
  • A pre-commit hook — rebuilds the index and stages it before every commit, so context-index.json always reflects what you're about to commit. If nothing changed, the rebuild is a no-op and nothing gets added to the commit.
  • post-merge / post-checkout hooks — rebuild the index after a pull or a branch switch, so local search results match whatever's on disk. These are advisory: if the rebuild fails for any reason they print a warning to stderr rather than blocking the merge or checkout.
  • .github/workflows/mdctx-index.yml — a CI check that rebuilds the index on every push/PR and fails the build if it doesn't match what's committed. This is the backstop for commits made with --no-verify, from a machine that never ran mdctx init, or by a bot.

Re-running mdctx init is safe. It won't overwrite a hook it didn't install unless you pass --force, so it won't clobber pre-existing hooks from another tool.

If you'd rather not touch git hooks, the CI workflow alone is enough to catch staleness; just don't run mdctx init and use mdctx build manually or in whatever pipeline already touches your docs.

How it works

  1. mdctx build walks the target directory for .md/.mdx files, hashes each one, and skips any file whose hash hasn't changed since the last run.

  2. For new/changed files, it extracts a title (from frontmatter or the first heading) and a set of keywords using a RAKE-style scoring algorithm — no LLM call, no network request. The number of keywords per file is auto-sized to that file's word count (roughly one keyword per 30 words, clamped to 5-25) rather than a flat count for every file, so a two-paragraph doc doesn't get padded with low-signal phrases and a long doc doesn't lose relevant terms to an arbitrarily small cutoff. Pass -k <n> to mdctx build to pin a fixed count for every file instead. Because of the incremental hash cache, this only affects files that are new or whose content changed on that run — an already-indexed file keeps its existing keyword count until it's re-processed. Delete context-index.json and rebuild if you want to re-score everything under the new sizing immediately.

    Words that appear in a markdown heading or a bold/emphasis span get a score multiplier, on the reasoning that an author calling something out explicitly is a stronger relevance signal than RAKE's raw co-occurrence statistics. This matters most for short, specific terms (a product name, a technology) that would otherwise lose to longer, more interconnected prose phrases even in a long document. It's not a complete fix for every case: */_ are also phrase delimiters (they have to be, so raw asterisks don't leak into extracted phrase text), so a single word wrapped in **word** gets isolated as its own one-word phrase before the boost applies, and a short isolated phrase can still lose to a longer unboosted one. Bolding a multi-word span doesn't have this problem, only single words do.

  3. Everything is written to context-index.json — one JSON object per file, human-readable and git-diffable. A rebuild that finds no content changes writes back the exact same bytes (the root path is stored relative to the index file, and the generatedAt timestamp only moves when something actually changed), so running mdctx build repeatedly never produces spurious diffs.

  4. mdctx search loads that JSON, builds a BM25 index in memory over each file's title+keywords, and returns ranked results.

Development

npm install
npm run build
npm test

License

MIT