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

nocturnusai-mcp

v0.3.13

Published

MCP stdio server for NocturnusAI — agent reasoning, memory lifecycle, and token-optimized context windows for AI applications.

Readme

nocturnusai-mcp

nocturnusai MCP server

MCP stdio server for NocturnusAI — agent reasoning, memory, and token-optimized context for AI applications. Point any MCP-compatible client (Claude Desktop, Cursor, Windsurf, etc.) at a running NocturnusAI instance and get:

  • Deterministic reasoning — multi-step inference with proof chains, not LLM guessing
  • Token-optimized context — salience-ranked retrieval puts only the most relevant facts in your context window, cutting token waste
  • Agent memory lifecycle — temporal facts, auto-expiration, consolidation, and decay so long-running agents stay focused
  • Truth maintenance — automatic retraction of derived knowledge when premises change

This package is a thin stdio shim. It forwards MCP requests to a NocturnusAI server's /mcp JSON-RPC endpoint. It does not include the server itself.

Quick start — run a NocturnusAI server

The fastest way to get a server running locally:

docker run -d --name nocturnusai -p 9300:9300 ghcr.io/auctalis/nocturnusai:latest

Data persists to a named Docker volume. Point your MCP client at this instance via the config below.

Alternatives: build from source (./gradlew :nocturnusai-server:run from the repo) or deploy to your own infra.

Client configuration

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "nocturnusai": {
      "command": "npx",
      "args": ["-y", "nocturnusai-mcp"],
      "env": {
        "NOCTURNUSAI_URL": "http://localhost:9300"
      }
    }
  }
}

Cursor / Windsurf

Same structure — most clients accept a command + args + env block.

Environment variables

| Variable | Default | Purpose | | --------------------- | ------------------------ | ------------------------------------------------- | | NOCTURNUSAI_URL | http://localhost:9300 | Base URL of the NocturnusAI server | | NOCTURNUSAI_API_KEY | (none) | Sent as X-API-Key when set | | NOCTURNUSAI_DATABASE| default | Sent as X-Database header | | NOCTURNUSAI_TENANT | default | Sent as X-Tenant-ID header |

What tools are available

Whatever tools the upstream NocturnusAI server exposes. As of 0.3.x this includes tell, ask, teach, forget, predicates, context, aggregate, bulk_assert, retract_pattern, fork_scope, merge_scope, list_scopes, delete_scope. The shim is transparent — new tools added to the server appear automatically without a package update.

Design

  • tools/list and tools/call requests are forwarded via HTTP JSON-RPC 2.0 to ${NOCTURNUSAI_URL}/mcp.
  • Tool schemas come from the upstream server. This package doesn't duplicate them.
  • Startup prints a warning to stderr if /health is unreachable so misconfig fails loudly.

License

BUSL-1.1