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

flowguide-mcp-bridge

v1.0.33

Published

FlowGuide Chrome Native-Messaging host (Node)

Downloads

215

Readme

FlowGuide MCP Bridge

FlowGuide MCP Bridge provides the local HTTP/MCP service and Chrome Native Messaging host used by the FlowGuide extension.

Requirements

  • Node.js 20 or newer
  • Google Chrome or Chromium

Install

Install the verified bridge version. Its npm postinstall hook registers the Chrome Native Host automatically:

npm install -g [email protected]

Use bootstrap only when a custom unpacked extension needs an explicit extension ID or when a repair flow asks for it.

The Chrome Web Store extension does not need --extension-id. Add it only for a custom unpacked extension:

flowguide-mcp-bridge bootstrap --port 12306 --browser chrome --extension-id <32-character-extension-id>

Verify the installation:

flowguide-mcp-bridge doctor --browser chrome
flowguide-mcp-bridge smoke --port 12306

If doctor reports stale paths, permissions, or registration, apply its targeted repair and then verify again:

flowguide-mcp-bridge doctor --fix --browser chrome
flowguide-mcp-bridge smoke --port 12306 --browser-runtime

See install.md for the complete install and repair flow.

Workspace Development

Run these commands from the repository root:

pnpm --filter chrome-mcp-shared build
pnpm --filter flowguide-mcp-bridge build
pnpm --filter flowguide-mcp-bridge test
pnpm test:package-contract

The package contract test creates real npm tarballs, installs them in a temporary consumer project, and verifies the shared exports and Bridge module loading.

MCP Gateway Registry

The Bridge can discover remote tools from an external mcp-gateway-registry and merge them into the local /mcp endpoint.

Minimal configuration:

MCP_GATEWAY_REGISTRY_ENABLED=1
MCP_GATEWAY_REGISTRY_URL=http://127.0.0.1:8080
MCP_GATEWAY_REGISTRY_DISCOVERY_MODE=auto

Common optional settings:

MCP_GATEWAY_REGISTRY_AUTH_TOKEN=<bearer-token>
MCP_GATEWAY_REGISTRY_SESSION_COOKIE=<cookie-value-or-full-cookie-header>
MCP_GATEWAY_REGISTRY_USERNAME=<username>
MCP_GATEWAY_REGISTRY_PASSWORD=<password>
MCP_GATEWAY_REGISTRY_ALLOW_TOOLS=["weather.get_forecast"]
MCP_GATEWAY_REGISTRY_BLOCK_TOOLS=["finance.delete_account"]
MCP_GATEWAY_REGISTRY_REFRESH_TTL_MS=60000
MCP_GATEWAY_REGISTRY_SERVICE_MCP_SUFFIX=/mcp

Registry tools are discovered first and enabled on demand. Use mcp_gateway_search_tools, mcp_gateway_enable_tools, mcp_gateway_disable_tools, mcp_gateway_list_enabled_tools, and mcp_gateway_refresh_catalog to manage the active tool set.

Site MCP Discovery

The Bridge can also discover MCP endpoints exposed by the current browser page and route calls through the browser runtime so the site's login session remains available.

MCP_SITE_MCP_ENABLED=1
MCP_SITE_MCP_REFRESH_TTL_MS=15000

Site tools are catalogued but only appear in /mcp after they are enabled. Discovery failure does not disable the built-in local tools.

License

MIT