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

@percena/memfuse

v0.2.1

Published

MemFuse SDK — unified package for MCP server, hooks, skills, and client library

Downloads

772

Readme

@percena/memfuse

SDK for MemFuse — the persistent memory hub for AI coding agents.

Installation

npm install @percena/memfuse

Prerequisites

MemFuse Server must be running. Download from GitHub Releases or build from source:

cargo build --release -p mfs-server && ./target/release/mfs-server

What's Included

| Component | Entry Point | Description | |-----------|-------------|-------------| | CLI | npx --package=@percena/memfuse memfuse | 110 commands covering all API operations | | MCP Server | npx --package=@percena/memfuse memfuse-mcp | 43 Agent-facing tools via MCP protocol | | Setup Tool | npx --package=@percena/memfuse memfuse-setup | Platform installer for Claude Code / Codex | | Lifecycle Hooks | @percena/memfuse/hooks | 8 hooks for Claude Code, 3 for Codex | | HTTP Client | @percena/memfuse/client | Type-safe client for MemFuse Server API |

Quick Start

1. Start the Server

./run-server.sh
# Verify: curl http://127.0.0.1:18720/health

2. Set Up for Your Agent Platform

# Claude Code
npx --package=@percena/memfuse memfuse-setup install --platform=claude-code --server-url=http://127.0.0.1:18720

# Codex
npx --package=@percena/memfuse memfuse-setup install --platform=codex --server-url=http://127.0.0.1:18720

3. Use the CLI

# Search memories
npx --package=@percena/memfuse memfuse search --query "auth decisions" --strategy diverse

# List facts
npx --package=@percena/memfuse memfuse list-facts

# Store an observation
npx --package=@percena/memfuse memfuse store-observation --tool-name "discovery" --content "Found rate limiter config"

# Check health
npx --package=@percena/memfuse memfuse health

Or install globally:

npm install -g @percena/memfuse
memfuse search --query "auth decisions"

4. Use as MCP Server

Add to your agent's MCP configuration:

{
  "mcpServers": {
    "memfuse": {
      "command": "npx",
      "args": ["--yes", "--package=@percena/memfuse", "memfuse-mcp"],
      "env": {
        "MEMFUSE_SERVER_URL": "http://localhost:18720",
        "MEMFUSE_USER_ID": "your-user-id"
      }
    }
  }
}

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | MEMFUSE_SERVER_URL | http://127.0.0.1:18720 | MemFuse Server URL (canonical default everywhere) | | MEMFUSE_USER_ID | default | User identifier |

Links

License

MIT