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

@tabnav/mcp-local-bridge

v0.1.1

Published

Local MCP server that exposes a localhost port via a Cloudflare Quick Tunnel, so it can be scanned by Tabnav's accessibility MCP tools before it's deployed.

Readme

@tabnav/mcp-local-bridge

A local MCP server with one job: expose a site running on your own machine (e.g. localhost:3000) through a public HTTPS URL, via a Cloudflare Quick Tunnel — no Cloudflare account needed — so it can be scanned by Tabnav's tabnav-accessibility MCP server before you deploy it.

It doesn't talk to Tabnav's backend and doesn't need your API key. It only opens/closes tunnels; your AI agent chains the two servers together itself.

Install

Nothing to install ahead of time — npx fetches and runs the published package on demand:

npx -y @tabnav/mcp-local-bridge

You won't normally run that yourself; your MCP client runs it for you via the config below. It's shown here just so you can sanity-check it works (it starts an MCP server on stdio and waits — Ctrl+C to stop).

Setup

Add both servers to your MCP client's config (example shown for the JSON config format used by Claude Desktop and similar clients):

{
  "mcpServers": {
    "tabnav-accessibility": {
      "url": "https://api.tabnav.com/mcp/scanning",
      "headers": { "Authorization": "Bearer <your-tabnav-api-key>" }
    },
    "tabnav-local-bridge": {
      "command": "npx",
      "args": ["-y", "@tabnav/mcp-local-bridge"]
    }
  }
}

Requires Node.js to already be installed (npx ships with it). The first run downloads a small cloudflared binary for your platform automatically — no separate install step.

Usage

Once both servers are configured, just ask your agent in plain language, e.g. "scan my local site on port 3000 before I deploy it." It will:

  1. Call expose_local_site on tabnav-local-bridge to get a public URL.
  2. Call start_site_mapping / start_monitor_scan on tabnav-accessibility with that URL, exactly as it would for any other domain.
  3. Optionally call stop_tunnel once scanning is done.

Tools

  • expose_local_site({ port, host? }) → { publicUrl, port, host }. host defaults to localhost; set it to reach another device on your LAN (e.g. 192.168.1.223). Re-calling with the same port+host while its tunnel is still open returns the same URL.
  • stop_tunnel({ port, host? }) → { port, host, stopped }. host must match what was passed to expose_local_site, if anything. Any tunnels still open when the bridge process exits are torn down automatically.

Security note

While a tunnel is open, anyone with the URL can reach your local site — the URL is unguessable but not authenticated. Don't leave one running against a build with real user data, and prefer stop_tunnel over letting it sit idle.