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

@continuity/mcp

v3.0.122

Published

Continuity MCP server — persistent AI memory for your codebase via Model Context Protocol

Readme

@continuity/mcp

Continuity MCP server — persistent AI memory for your codebase via the Model Context Protocol.

This npm package ships only the MCP server. License activation, repo init, journal maintenance, and shell logging live in @continuity/cli (continuity bin).

Requires Node.js 18+.

License: Proprietary software — not open source. Decision logging via MCP is free; premium MCP tools require Pro. Purchase at app.hackerware.co/pricing. Use @continuity/cli@^3.5.0 for license activation. Full license terms.

npm ecosystem

| Package | Global bin | Role | |---------|------------|------| | @continuity/mcp (this package) | continuity-mcp | MCP server — wire into Cursor, Claude Code, Codex, Cline, etc. | | @continuity/cli | continuity | CLI — license activate, init, log, search, mcp setup, … | | @continuity/core | — | Shared library (journal, handoffs, licensing) — dependency, not end-user facing | | VS Code extension | — | Bundles this server + sidebar UI + passive auto-capture (marketplace) |

Both @continuity/mcp and @continuity/cli read/write the same license cache at ~/.continuity/license-cache.json.

Install

Recommended (CLI + MCP — one command):

npm install -g @continuity/cli@^3.5.9

This installs @continuity/mcp as a dependency. You get both bins:

which continuity       # → @continuity/cli
which continuity-mcp   # → @continuity/mcp

MCP server only (no CLI — e.g. server-only CI):

npm install -g @continuity/mcp

Quick start

1. Activate Pro (optional)

Use the CLI bin, not continuity-mcp:

continuity license activate YOUR-LEMONSQUEEZY-KEY
continuity license status

License state is stored in ~/.continuity/license-cache.json and picked up by the MCP server on the next tool call.

2. Initialize the repo (first time)

cd /path/to/your/repo
continuity init

Or use the bundled project helper:

continuity-setup /path/to/your/repo

(continuity-setup writes a starter .mcp.json; for global installs prefer the JSON below with continuity-mcp + WORKSPACE_ROOT.)

3. Configure your MCP client

Option A — CLI auto-setup (easiest):

continuity mcp setup

Option B — manual JSON (Cursor, Claude Code, Codex, etc.):

{
  "mcpServers": {
    "continuity": {
      "command": "continuity-mcp",
      "args": [],
      "env": {
        "WORKSPACE_ROOT": "/absolute/path/to/your/repo"
      }
    }
  }
}

WORKSPACE_ROOT must be an absolute path to the repository Continuity should read and write.

Restart your MCP client after changing config.

4. Use in chat

@continuity search for authentication decisions
@continuity what changed since last session?

Free vs Pro

| Surface | Free | Pro / active trial | |---------|------|-------------------| | Decision logging (log_decision) | ✅ Always free | ✅ | | Search & read (search_decisions, get_quick_context, …) | ✅ | ✅ | | Premium MCP tools (code intelligence, graph, dream, exports, browser/perf tools, …) | 🔒 | ✅ |

Decision logging is never paywalled — intentional product policy. The paid surface is premium MCP write/analysis tools, not memory capture.

Without a license or active trial, the server runs in expired/free mode: reads work; premium tools return an upgrade message.

Tool profiles (Essential / Standard / Full) control how many tools are exposed per client — the VS Code extension manages this automatically; npm-only users configure via client MCP settings.

VS Code extension path

The Continuity Ultimate extension bundles this server, runs MCP health repair, and syncs trial/license state. The npm packages above are for MCP-only workflows without VS Code.

Verify your install (maintainers)

From a clone of the Continuity repo:

bash scripts/smoke-npm-tarball.sh

Troubleshooting

MCP server not connecting

  • Confirm continuity-mcp is on PATH: which continuity-mcp
  • Do not point MCP config at continuity — that is the CLI binary
  • Set WORKSPACE_ROOT to an absolute path
  • Restart the MCP client after config changes
  • Check .continuity/mcp-health.json in the workspace

Premium tools blocked

continuity license status
continuity license activate YOUR-KEY

Cache may be stale (7-day offline grace applies).

Wrong bin in config

| Symptom | Fix | |---------|-----| | Server starts but no tools | Use continuity-mcp, not continuity | | continuity mcp start vs global MCP | Extension/CLI may spawn bundled copy; global clients need continuity-mcp on PATH |

License

Proprietary — Copyright © Hackerware. See LICENSE and Software License Terms.

  • Free: log_decision, search, read context, and other documented free MCP tools.
  • Pro: premium write/analysis MCP tools — activate with @continuity/cli@^3.5.0: continuity license activate YOUR-KEY.
  • Pricing: app.hackerware.co/pricing