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

monkbrowse

v0.2.1

Published

MCP server that drives your real Chrome across many tabs and profiles. Pairs with the monkbrowse Chrome extension.

Readme


This is the server half of monkbrowse. It talks to your AI over MCP (stdio) and drives your real Chrome through the monkbrowse Chrome extension over a local WebSocket. Both halves are required.

Because it is your Chrome, your sessions, cookies, and 2FA are already there, and it works on sites that block headless automation. What makes it different: a single server drives many tabs across many Chrome profiles at the same time. Each profile connects on its own port; each shared tab gets a simple number (1, 2, 3…). Tools target { profile, tab }, so you can tell your AI "on tab 2, do X."

                      ┌──── monkbrowse server (one process) ────┐
 AI app ──stdio/MCP──▶│  registry: Map<port, profile>           │
                      │  ws :9222 ─▶ extension · profile "Work"  ├─▶ tabs
                      │  ws :9223 ─▶ extension · profile "Home"  ├─▶ tabs
                      └─────────────────────────────────────────┘

Why a real browser, not headless

| | Headless (Playwright / Puppeteer) | monkbrowse | |---|---|---| | Login / cookies / 2FA | re-auth every run | already logged in | | Bot / CAPTCHA walls | frequently blocked | real fingerprint | | Profiles | one clean context | many real profiles at once | | Where it runs | a spawned browser | the Chrome on your screen | | Privacy | varies | 100% local |

You choose what the AI can see. By default it sees nothing. Each tab has a Share toggle in the popup; only shared tabs get a number and become drivable. Your banking tab stays invisible, and a tool call against an unshared tab is refused.

See it

| By default it sees nothing | Watch it work, tab by tab | |:--:|:--:| | By default, it sees nothing — you choose per tab | Watch it work — a live badge shows the active tab |

Install

Two small steps. No path juggling, no build.

1. Add the server to your AI app

One-click:

 

Or one command, in the terminal you already use.

Claude Code

claude mcp add monkbrowse -- npx -y monkbrowse

Gemini CLI

gemini mcp add monkbrowse npx -y monkbrowse

Codex CLI (OpenAI)

codex mcp add monkbrowse -- npx -y monkbrowse

VS Code

code --add-mcp '{"name":"monkbrowse","command":"npx","args":["-y","monkbrowse"]}'

Add --scope user (Claude) or -s user (Gemini) to install it for every project. The Cursor CLI shares Cursor's config — use the button above.

Windsurf, Claude Desktop, or any other client — drop this into its MCP config:

{
  "mcpServers": {
    "monkbrowse": {
      "command": "npx",
      "args": ["-y", "monkbrowse"]
    }
  }
}

bunx monkbrowse and pnpm dlx monkbrowse work too. Per-client details: Install guide.

2. Install the Chrome extension

monkbrowse drives your real Chrome, so it needs a small extension. Install it from the Chrome Web Store, then open the popup, toggle a tab on (it gets a number like #1), and tell the AI "on tab 1, do X."

Privacy

100% local. The server binds only to 127.0.0.1, the extension talks only to that local server, and nothing is sent to any third party — no telemetry, no analytics, no account. The AI sees only the tabs you explicitly share, and a call against an unshared tab is refused. See the privacy policy.

Requirements

  • Node (for npx) — or Bun / pnpm for bunx / pnpm dlx
  • Chrome (or any Chromium browser with MV3 + offscreen support)
  • Any MCP client (Claude, Cursor, VS Code, Windsurf, Gemini CLI, Codex, …)

The tools

22 tools. Full arguments and behavior: tool reference.

| Group | Tools | |---|---| | Navigation | browser_navigate · browser_go_back · browser_go_forward · browser_reload | | Reading | browser_snapshot · browser_get_text · browser_screenshot · browser_get_console_logs · browser_evaluate | | Interacting | browser_click · browser_hover · browser_type · browser_select_option · browser_press_key · browser_scroll · browser_drag · browser_upload_file | | Timing | browser_wait | | Tabs & profiles | browser_list_tabs · browser_switch_tab · browser_new_tab · browser_close_tab |

The snapshot is shadow-DOM and same-origin-iframe aware; reads that time out retry automatically while actions never silently re-send; calls to different tabs run in parallel while two mutations on the same tab are serialized.

CLI

monkbrowse --base-port 9222   # first profile port (default 9222)
monkbrowse --ports 20         # how many consecutive profile ports to bind

Your AI client normally launches this for you; you rarely run it by hand.

Links

  • Docs: https://monkfromearth.github.io/monkbrowse/
  • Source, issues, releases: https://github.com/monkfromearth/monkbrowse

License

Apache-2.0.