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

@functionland/fula-mcp

v0.6.19

Published

Local MCP (Model Context Protocol) stdio server for Fula decentralized storage — store/retrieve files in FxFiles' end-to-end-encrypted format directly from Claude Desktop, Claude Code, Codex CLI, or Gemini CLI. Run build-free via `npx @functionland/fula-m

Readme

@functionland/fula-mcp

Local MCP (Model Context Protocol) stdio server for Fula decentralized storage. It lets an AI assistant (Claude Desktop, Claude Code, Codex CLI, Gemini CLI, …) store and retrieve files in FxFiles' end-to-end encrypted format — running build-free on your machine.

npx @functionland/fula-mcp

The first run downloads the prebuilt fula-mcp binary for your platform from the matching GitHub Release, verifies it, and caches it. Subsequent runs use the cache (no network).

Use it as an MCP server

The server speaks MCP over stdio. Point your AI client at it. The per-session capability bundle is injected via the FULA_MCP_CAPABILITY environment variable (minted by the component that pairs your AI with your Fula account); this wrapper forwards your environment and stdio to the binary unchanged.

Claude Desktop / Claude Code (mcpServers config)

{
  "mcpServers": {
    "fula": {
      "command": "npx",
      "args": ["-y", "@functionland/fula-mcp"],
      "env": { "FULA_MCP_CAPABILITY": "<your connection bundle JSON>" }
    }
  }
}

Tip: run npx -y @functionland/fula-mcp once in a terminal first to warm the binary cache, so the client doesn't time out waiting for the first download.

Supported platforms

| OS | Arch | Rust target | | ------- | ----- | ---------------------------- | | Windows | x64 | x86_64-pc-windows-msvc | | Linux | x64 | x86_64-unknown-linux-gnu | | Linux | arm64 | aarch64-unknown-linux-gnu | | macOS | x64 | x86_64-apple-darwin | | macOS | arm64 | aarch64-apple-darwin |

Security: how the binary is trusted

This wrapper downloads a native binary and runs it. The trust model:

  • The binary is fetched from the GitHub Release whose tag matches this package's version (fula-mcp-v{version}).
  • Its SHA-256 is verified against a checksums.json bundled inside this npm package — written at release time, in the same CI run that built the binary.
  • The npm package itself is published via OIDC trusted publishing with provenance (no long-lived token), so the package — and therefore the bundled checksum — is the trust root.
  • If the Release asset is ever swapped, its hash won't match the bundled checksum and the wrapper refuses to execute it. The binary is re-verified immediately before every launch.

Residual trust: this does not (and cannot) defend against a compromise of the CI run that produces both the binary and the bundled checksum. Tags are protected and the publish runs in a restricted environment to mitigate that.

Environment variables

| Variable | Effect | | ---------------------- | ----------------------------------------------------------------- | | FULA_MCP_CAPABILITY | (passed through) the per-session capability bundle for the server | | FULA_MCP_JWT | (passed through) optional out-of-band JWT override | | RUST_LOG | (passed through) binary log level (logs go to stderr) | | FULA_MCP_CACHE_DIR | override the binary cache directory |

License

MIT OR Apache-2.0