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

claude-chrome-android

v1.2.2

Published

Claude Code Browser Bridge for Android — connects Claude Code CLI to Chrome/Edge via WebSocket

Downloads

496

Readme

claude-chrome-android

Browser bridge for Claude Code on Android — connects the Claude Code CLI in Termux to Chrome/Edge via WebSocket + MCP.

Quick Start

# In Termux — one-time setup:
npx claude-chrome-android --setup

# Start the bridge (must be running BEFORE opening Claude Code):
npx claude-chrome-android

# Then open a Claude Code session — browser tools are available as mcp__cfc-bridge__*

Requirements

  • Android device with Termux
  • Chrome or Edge browser with the Claude Code Bridge extension
  • Node.js 18+ or Bun

Usage

claude-chrome-android              # start the bridge server
claude-chrome-android --mcp        # MCP server mode (spawned by Claude Code)
claude-chrome-android --stop       # stop a running bridge
claude-chrome-android --setup      # register MCP + install CRX extension
claude-chrome-android --version    # show version
claude-chrome-android --help       # show help

How It Works

  1. The bridge runs a WebSocket server on ws://127.0.0.1:18963
  2. The browser extension connects and relays page content to Claude Code
  3. Claude Code spawns --mcp as a thin MCP relay per session (~5MB)
  4. Multiple Claude Code sessions share one bridge via a FIFO tool queue
Claude Code session 1 ─→ cli.js --mcp ─┐
Claude Code session 2 ─→ cli.js --mcp ─┤─→ HTTP POST /tool ─→ bridge (WS) ─→ extension
Claude Code session N ─→ cli.js --mcp ─┘

Setup Details

--setup performs three steps:

  1. Registers MCP server in ~/.claude/settings.json as cfc-bridge — Claude Code spawns cli.js --mcp per session
  2. Creates ~/bin/termux-url-opener — handles cfcbridge://start URLs to auto-start the bridge
  3. Installs CRX extension — serves the bundled CRX over HTTP and opens Edge for installation (requires ADB)

Important

The bridge must be running before starting a Claude Code session. MCP tools are registered at session startup — if the bridge is down, the tools won't appear.

Extension

The bridge serves the CRX at http://127.0.0.1:18963/ext/crx — open this URL in Edge to install or update the extension.

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | BRIDGE_PORT | 18963 | WebSocket/HTTP server port | | BRIDGE_URL | http://127.0.0.1:18963 | Bridge URL for MCP relay |

License

MIT