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

@pilotspace/lunaris-mcp

v0.3.0

Published

Lunaris MCP server — no Rust toolchain required. Downloads a prebuilt native binary on install.

Readme

@pilotspace/lunaris-mcp

Lunaris MCP server — no Rust toolchain required.

Downloads a prebuilt native binary for your platform on npm install and forwards npx @pilotspace/lunaris-mcp to that binary with inherited stdio.

Quick Start

npx @pilotspace/lunaris-mcp --help

Or register as a persistent Claude Code MCP server:

{
  "mcpServers": {
    "lunaris": {
      "command": "npx",
      "args": ["-y", "@pilotspace/lunaris-mcp"]
    }
  }
}

Via the Claude Code CLI:

claude mcp add --transport stdio lunaris -- npx -y @pilotspace/lunaris-mcp

Supported Platforms

| Platform | Architecture | Target triple | |----------|-------------|---------------| | Linux | x64 | x86_64-unknown-linux-gnu | | Linux | arm64 | aarch64-unknown-linux-gnu | | macOS | x64 | x86_64-apple-darwin | | macOS | arm64 (M-series) | aarch64-apple-darwin | | Windows | x64 | x86_64-pc-windows-msvc |

Unsupported platforms: install the Rust toolchain and run cargo install lunaris-mcp. See docs/integration/claude-code.md.

Air-gap / Offline Environments

Set LUNARIS_MCP_BIN_PATH to point at a pre-staged binary. The postinstall script and wrapper both respect this override — no download occurs.

LUNARIS_MCP_BIN_PATH=/path/to/lunaris-mcp npx @pilotspace/lunaris-mcp --help

Security note: The LUNARIS_MCP_BIN_PATH escape hatch is an operator control. An attacker who controls environment variables already owns the process; the air-gap case is a pre-existing compromise scenario, not a new attack surface introduced by this package. See docs/integration/claude-code.md for the full threat model.

Windows Requirements

Windows: tar.exe is required. Windows 10 Build 1803+ (released April 2018) ships it by default. Older systems must either upgrade, or download the binary manually from GitHub Releases and set LUNARIS_MCP_BIN_PATH before invoking npx @pilotspace/lunaris-mcp.

SHA-256 Integrity Verification

The postinstall script verifies the downloaded tarball's sha256 hash against manifest.json (shipped inside this npm package). The manifest values are populated by the release CI (mcp-prebuild.yml) and are the trust anchor for the downloaded binary. Postinstall aborts with a non-zero exit code if the hash does not match — indicating a tampered or corrupted artifact.

Full Documentation

See docs/integration/claude-code.md for the complete integration guide including environment variables, storage backends, and all four MCP tools.

License

Apache-2.0 OR MIT