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

immudb-wasm-mcp

v0.2.0

Published

MCP (stdio) server exposing a tamper-evident KV + SQL store backed by embedded immudb-wasm. Pure JS + wasm, no native binary. Run with: npx -y immudb-wasm-mcp

Downloads

209

Readme

immudb-wasm-mcp

An MCP (stdio) server exposing a tamper-evident key-value + SQL store backed by embedded immudb compiled to WebAssembly (immudb-wasm). Pure JS + one .wasmno native binary, no server, no container.

Because it's published to npm, it runs with zero local build:

npx -y immudb-wasm-mcp

That is exactly what the Claude Code plugin's manifest does, which is why the plugin installs from a marketplace with no build step (see ../plugin).

Tools

immudb_set, immudb_get, immudb_verified_get, immudb_scan, immudb_sql_exec, immudb_sql_query, immudb_status.

immudb_verified_get performs a real in-process cryptographic proof (inclusion + consistency against the current committed root) and returns verified plus the root hash.

Configuration

| Env var | Meaning | Default | |---|---|---| | IMMUDB_WASM_DATA_DIR | Root directory for stores | ~/.immudb-wasm-plugin | | PROJECT_DIR | Project that scopes the store | current working dir |

Each project gets its own store under IMMUDB_WASM_DATA_DIR, named <basename>-<digest of the project path>. The digest keeps two unrelated checkouts that happen to share a folder name from landing on the same single-writer store. Releases before 0.2.0 used the bare basename; a store already sitting at that older path keeps being used, so upgrading never strands an existing ledger.

Unset values passed as an unexpanded ${VAR} placeholder are ignored.

Use as an MCP server (outside the plugin)

One command, no repository clone and no build:

claude mcp add immudb-wasm -- npx -y [email protected]

Or declare it in an MCP config file directly:

{
  "mcpServers": {
    "immudb-wasm": {
      "command": "npx",
      "args": ["-y", "[email protected]"],
      "env": { "IMMUDB_WASM_DATA_DIR": "/path/to/data" }
    }
  }
}

The plugin in ../plugin does nothing more than this — its manifest holds no code, just the same npx invocation — so registering the server directly is equivalent and skips the git-based plugin transport.

Notes

  • Single writer. The embedded store is single-process; a second open of the same directory by a live process is rejected. A lock left by a crashed process is detected and reclaimed.
  • Depends on the immudb-wasm package, which bundles the .wasm.

BUSL-1.1 (packages the immudb engine).