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

helium-devtools-mcp

v1.1.1-helium.1

Published

MCP server for Chrome DevTools (Helium-patched fork of chrome-devtools-mcp: the stable browser channel launches the Helium browser.)

Readme

helium-devtools-mcp

A drop-in fork of chrome-devtools-mcp that targets the Helium browser instead of Chrome whenever the stable browser channel is selected. This build mirrors the upstream v1.1.1 codebase and is published as 1.1.1-helium.1.

What changed

For the stable channel (the default — i.e. when no --executablePath, --channel, --browserUrl, or --wsEndpoint is given):

  • Launch → starts Helium instead of Chrome.
  • --autoConnect → attaches to a running Helium's own user-data directory (reading its DevToolsActivePort) instead of Chrome's default profile, so the MCP controls the Helium window you already have open.

Other channels (beta, canary, dev), an explicit --executablePath, --browserUrl, --wsEndpoint, or a custom --userDataDir all behave exactly as upstream.

Privacy

This fork is configured for a private, local-first setup and does not phone home by default:

  • usageStatistics and performanceCrux default to false (no Google usage telemetry, no sending performance-trace URLs to the CrUX API).
  • The npm update check is disabled (no startup network request). You get the latest build via npx helium-devtools-mcp@latest; opt back in with HELIUM_ENABLE_UPDATE_CHECK=1.

Connecting to a running Helium

  1. In Helium, enable remote debugging at helium://inspect/#remote-debugging. (It writes a DevToolsActivePort file into Helium's profile. Note: it disables the HTTP /json endpoints, so --browserUrl will not work — use --autoConnect.)
  2. Run with auto-connect: npx helium-devtools-mcp@latest --autoConnect

The server resolves Helium's profile per-platform; override with HELIUM_USER_DATA_DIR. The Helium binary (for launching) is found via helium-paths or HELIUM_EXECUTABLE.

Usage

# Launch a fresh Helium:
npx helium-devtools-mcp@latest

# Or attach to a Helium you already have open (remote debugging enabled):
npx helium-devtools-mcp@latest --autoConnect

For all other flags and tool documentation, see the upstream README.