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

@yqi96/browser-pilot

v1.2.4

Published

Browser MCP server for AI agents — auto-launches Chrome, proxies chrome-devtools-mcp tools

Readme

browser-pilot

Give AI agents a real browser. One command to install.

A lightweight MCP server that wraps chrome-devtools-mcp with automatic Chrome lifecycle management — works with Claude Code, Codex CLI, and Gemini CLI out of the box.

What can you do with it?

  • Deep web research — crawl multi-page sites, extract structured data, summarize articles, compare prices across tabs
  • Form automation — fill and submit forms, upload files, interact with SPAs and dynamic content
  • Human-in-the-loop — AI handles the tedious parts, pauses when a CAPTCHA or login appears, you solve it, AI continues
  • Screenshot & visual analysis — capture pages and let the AI reason about layout, content, or visual changes
  • Scraping without APIs — access any site a human can open, no API key required

Requirements

  • Node.js ^20.19.0, ^22.12.0, or >=23 (required by chrome-devtools-mcp)
  • npm >=7

Install

npx --package=@yqi96/browser-pilot@latest browser-pilot-install

Detects which AI clients you have installed and registers itself automatically.

# Target a specific client
npx --package=@yqi96/browser-pilot@latest browser-pilot-install --client claude
npx --package=@yqi96/browser-pilot@latest browser-pilot-install --client codex
npx --package=@yqi96/browser-pilot@latest browser-pilot-install --client gemini

What it does

  • Auto-launches Chrome on first use (macOS / Linux / Windows)
  • Adds lifecycle toolsbrowser_open, browser_close
  • Proxies all chrome-devtools-mcp tools transparently (navigate, click, screenshot, fill forms, …)
  • Returns screenshots as base64 for direct multimodal AI processing
  • Parallel-agent safe — each agent gets its own isolated Chrome instance via session IDs

Parallel agents

When multiple subagents run concurrently, each one calls browser_open() independently and gets back a unique session_id. Every subsequent browser tool call passes that ID via _browser_session, so agents never interfere with each other:

# Agent A                                    # Agent B (concurrent)
browser_open()                               browser_open()
→ Session: abc-123                           → Session: def-456

navigate_page(url="...",                     navigate_page(url="...",
  _browser_session="abc-123")                  _browser_session="def-456")

browser_close(session_id="abc-123")          browser_close(session_id="def-456")

If Chrome is closed externally mid-session, the next tool call returns a clear error telling the agent to call browser_open() again — no manual cleanup needed.

Supported clients

| Client | Status | Skill command | |--------|--------|---------------| | Claude Code | ✅ Supported | /browser | | Codex CLI | ✅ Supported | $browser | | Gemini CLI | ✅ Supported | activate_skill("browser") |

Uninstall

npx --package=@yqi96/browser-pilot@latest browser-pilot-uninstall

Contributing

Found a bug? Open an issue or, if you have Claude Code, clone the repo and let it fix it:

git clone https://github.com/yqi96/browser-pilot && cd browser-pilot && claude

PRs are welcome!

License

MIT