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

@onemem/mcp

v0.6.3

Published

OneMem MCP server — exposes memory + trace primitives to any MCP-compatible runtime (Cursor, Codex, Antigravity, Windsurf, OpenCode, Cline, VS Code Copilot)

Readme

@onemem/mcp

A stdio MCP server exposing OneMem's verifiable memory + trace surface to any MCP-compatible runtime (Claude Code, Cursor, Codex, Windsurf, Cline, …).

Tools (memory-centric)

| Tool | What it does | |---|---| | onemem_add_memory | Remember: client-side Seal-encrypt → Walrus via MemWal (relayer never sees plaintext); returns blob id + attestation | | onemem_search_memory | Recall: vector search → download → Seal-decrypt; ranked memories (relevance 0–1) | | onemem_verify_trace | Off-chain Merkle verification of a trace session (read-only) | | onemem_trace_session | List the ActionCalls in a session | | onemem_replay_session | Reconstruct a replayable session transcript from on-chain events | | onemem_share_namespace | Mint + transfer a ReadWrite/ReadOnly capability (on-chain sharing) | | onemem_revoke_namespace_capability | Admin-revoke a capability by ID; object remains but OneMem gates reject it |

get/update/delete_memory are v0.2 (MemWal 0.0.5 has no get/update/delete primitive).

Configuration (env)

  • SUI_NETWORKtestnet (default active) | mainnet | devnet | local
  • ONEMEM_PRIVATE_KEY — a suiprivkey1… secret. Falls back to the active sui CLI keystore's first Ed25519 key.
  • Memory tools need MemWal creds: ONEMEM_ACCOUNT_ID, ONEMEM_DELEGATE_KEY, ONEMEM_EMBEDDING_API_KEY (OpenAI), MEMWAL_PACKAGE_ID, MEMWAL_RELAYER_URL. Without them the server still runs (verify/trace tools work); memory tools report not-configured.

Install into Claude Code

claude mcp add onemem -- npx -y @onemem/mcp@latest

From a development checkout, use the built local entry instead:

claude mcp add onemem -- node /absolute/path/to/packages/mcp-server/dist/index.js

Or add the published server to .mcp.json / your client's MCP config:

{
  "mcpServers": {
    "onemem": {
      "command": "npx",
      "args": ["-y", "@onemem/mcp@latest"],
      "env": { "SUI_NETWORK": "testnet" }
    }
  }
}

Then ask the agent: "verify OneMem session 0x08f4ef5b…" → it calls onemem_verify_trace and reports ok: true.

Install into Codex

Preferred path: install the Codex plugin package from the OneMem repository marketplace. It bundles this MCP server through .mcp.json and adds an optional OneMem skill and trusted hook layer.

codex plugin marketplace add Blockchain-Oracle/onemem --json
codex plugin add onemem-codex@onemem --json

Manual MCP-only path:

[mcp_servers.onemem]
command = "npx"
args = ["-y", "@onemem/mcp@latest"]
env_vars = ["SUI_NETWORK", "ONEMEM_CREDENTIALS_PATH", "ONEMEM_ACCOUNT_ID", "ONEMEM_DELEGATE_KEY", "ONEMEM_EMBEDDING_API_KEY", "MEMWAL_PACKAGE_ID", "MEMWAL_RELAYER_URL"]

Spec: docs/05-our-architecture/03-runtimes/mcp-server.md.