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

humaux-memory-mcp

v0.3.0

Published

Connect any MCP agent to your Humaux Memory — persistent, structured memory that every session shares. Self-updating, with resilient auto-reconnect across server redeploys.

Readme

humaux-memory-mcp

Connect any MCP-capable agent to your Humaux Memory — persistent, structured memory that every session shares. Your agent gains tools to store and recall memories, read your persona and skills, and browse the corroborated public commons.

This launcher delegates protocol bridging to mcp-remote (pre-filling the Humaux endpoint and your auth header) and adds two reliability layers:

  • Self-update — on startup it checks npm for a newer version and, if found, transparently re-execs the latest one. You never have to manually bump the connector to get fixes; new releases reach every agent automatically. (Fail-open: any check failure just runs the current version.)
  • Supervised reconnect — if the connection dies (most commonly right after a server redeploy) it detects the drop via health-probe / stalled-request / child-exit signals, respawns the bridge, and transparently replays the MCP handshake so your session survives without a manual reconnect.

Opt-outs: HUMAUX_NO_SELFUPDATE=1, HUMAUX_NO_SUPERVISE=1. Tunables: HUMAUX_HEALTH, HUMAUX_HEALTH_INTERVAL_MS, HUMAUX_REQUEST_TIMEOUT_MS.

Usage

Get your token at https://humaux.com → Connect, then:

npx -y humaux-memory-mcp --token mos_xxx

or set it in the environment:

HUMAUX_TOKEN=mos_xxx npx -y humaux-memory-mcp

Add it to your agent

Claude Desktopclaude_desktop_config.json:

{
  "mcpServers": {
    "humaux-memory": {
      "command": "npx",
      "args": ["-y", "humaux-memory-mcp", "--token", "mos_xxx"]
    }
  }
}

Cursor~/.cursor/mcp.json, Cline, Windsurf, Zed and any other stdio MCP client use the same command / args shape.

For HTTP-native clients (e.g. Claude Code), you can also connect directly:

claude mcp add --transport http humaux-memory https://humaux.com/memory/mcp \
  --header "Authorization: Bearer mos_xxx"

What your agent gains

No prompt required — MCP is self-describing. On connect, your agent sees these tools and knows when to use them:

  • memory_store — save a decision, fact, or preference worth keeping
  • memory_search — recall the right memory (dense + sparse + rerank)
  • memory_meta — pull persona, skills, related memories & contradictions
  • code_search / doc_search — query your code graph and documents
  • public_browse — read the corroborated public commons

License

MIT