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

@bluenotelogic/mcp

v0.3.1

Published

CaveauAI MCP server — RAG context injection for Claude Code/Desktop and other MCP hosts. Each client uses their own token + retrieval profiles.

Readme

@bluenotelogic/mcp

MCP server for CaveauAI — inject corpus content into Claude Code, Claude Desktop, Cursor, Continue, or any other MCP host at runtime, scoped to your retrieval profiles. Published under Blue Note Logic's npm scope; serves the CaveauAI product.

Install

npx @bluenotelogic/mcp@latest --stdio

Configure

Set two environment variables:

| Variable | Required | Default | Notes | |----------|----------|---------|-------| | CAVEAU_API_TOKEN | yes (stdio) | — | Mint one in the portal at caveauai.bluenotelogic.com/app/mcp. Shown once. | | CAVEAU_BASE_URL | no | https://ai.bluenotelogic.com | Set this if you self-host or talk to staging. |

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "caveau": {
      "command": "npx",
      "args": ["-y", "@bluenotelogic/mcp", "--stdio"],
      "env": {
        "CAVEAU_API_TOKEN": "mcp_…"
      }
    }
  }
}

Claude Code

claude mcp add caveau -- npx -y @bluenotelogic/mcp --stdio
# Then set CAVEAU_API_TOKEN in your shell or via `claude mcp env`

Hosted Streamable HTTP

For hosts that support remote MCP (Claude Desktop, Cursor with the latest connectors), use the hosted URL instead of npx:

https://mcp.caveauai.bluenotelogic.com/mcp
Authorization: Bearer mcp_…

Do Better Norge MCP

For Do Better Norge Plus/Pro members, use the DBN user token minted on https://tools.dobetternorge.no/account.php.

DBN_MCP_TOKEN=dbn_user_mcp_... npx @bluenotelogic/mcp@latest dobetternorge-mcp --stdio

Claude Desktop:

{
  "mcpServers": {
    "dobetternorge": {
      "command": "npx",
      "args": ["-y", "@bluenotelogic/mcp", "dobetternorge-mcp", "--stdio"],
      "env": {
        "DBN_MCP_TOKEN": "dbn_user_mcp_..."
      }
    }
  }
}

Hosted endpoint:

https://mcp.dobetternorge.no/mcp
Authorization: Bearer dbn_user_mcp_...

DBN tools process text in memory by default. Use dbn.save_to_case only when a user explicitly wants to persist a result to My Case.

Tools

| Tool | Purpose | |------|---------| | caveau.search | RAG search; returns ranked chunks with source metadata. Optional profile, top_k, category. | | caveau.list_profiles | List your saved retrieval profiles (named criteria sets). | | caveau.list_corpora | List corpora you can query — your private ones plus shared subscriptions. | | caveau.get_document | Fetch a single document and its chunks by id. | | caveau.corpus_stats | Per-corpus document/chunk counts plus your plan caps. | | caveau.ingest_text | Add text to one of your private corpora (plan-gated). |

Retrieval profiles

A profile is a saved bundle of what to retrieve: which corpora, which search method (vector/keyword/hybrid), top_k, recency cutoff, category and tag whitelists, embedding-model override. Build them in the portal at caveauai.bluenotelogic.com/app/mcp and reference them by slug from caveau.search.

Local development

npm install
npm run build
CAVEAU_API_TOKEN=… node dist/index.js --stdio

Test the server end-to-end with the official inspector:

npx @modelcontextprotocol/inspector node dist/index.js --stdio

License

UNLICENSED — © Blue Note Logic.