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

waxmcp

v0.1.21

Published

npx launcher for the Wax MCP server

Readme

waxmcp

Discord

waxmcp is an npm launcher for the Wax MCP server.

Usage

npx -y waxmcp@latest mcp serve

For Claude Code / Codex installs, prefer:

npx -y waxmcp@latest mcp install --scope user

That install flow stages the bundled runtime into a stable local directory and registers the staged wax-mcp binary, so regular MCP sessions do not keep launching through raw npx.

Note: waxmcp currently supports Apple Silicon macOS only (darwin-arm64).

To publish a new version:

cd /path/to/Wax/Resources/npm/waxmcp
npm version patch   # or minor/major/1.2.3 (requires npm publish access)
npm publish --access public

This repo also ships a release script that updates version, syncs Sources/WaxMCPServer/main.swift's serverVersion, and rebuilds the Darwin binaries and resource bundles:

cd /path/to/Wax
./scripts/release-waxmcp.sh 0.1.18
git add Resources/npm/waxmcp/package.json Sources/WaxMCPServer/main.swift Resources/npm/waxmcp/dist
git commit -m "release: bump waxmcp version"

package.json and Sources/WaxMCPServer/main.swift are required to stay in lockstep; the release workflow checks this before publishing.

Artifacts are packaged with wax-cli.sha256 and wax-mcp.sha256 checksums generated by the release scripts for each platform binary.

MCP mode (default)

When invoked with no arguments or with mcp serve, the launcher directly invokes the wax-mcp binary using this search order:

  1. $WAX_MCP_BIN
  2. Bundled dist/darwin-arm64/wax-mcp or dist/darwin-x64/wax-mcp
  3. wax-mcp in PATH
  4. ./.build/debug/wax-mcp (current working directory)

CLI mode

For all other subcommands (remember, recall, search, etc.), the launcher invokes the wax-cli binary using this search order:

  1. $WAX_CLI_BIN
  2. Bundled dist/darwin-arm64/wax-cli or dist/darwin-x64/wax-cli
  3. wax-cli in PATH
  4. ./.build/debug/wax-cli (current working directory)

Vector-capable CLI commands now auto-start and reuse a background daemon by default, so coding agents can keep calling normal wax-cli/waxmcp commands without learning a separate workflow.

You can still run the daemon directly when you want an explicit long-lived session:

waxmcp daemon --store-path ~/.wax/memory.wax

The daemon keeps one MemoryOrchestrator open, so repeated remember / search / recall requests do not reload the CoreML embedder every time. Simple text-only usage still runs one-shot. Hybrid/vector searches now fail explicitly if vector search is unavailable instead of silently degrading to text-only mode.

Local development

cd /path/to/Wax
swift build --product wax-cli --traits MCPServer
swift build --product wax-mcp --traits MCPServer
export WAX_CLI_BIN=/path/to/Wax/.build/debug/wax-cli
npx --yes ./npm/waxmcp mcp doctor