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

supersurf-mcp

v4.0.0

Published

Open-source MCP server for browser automation — gives AI agents control of a real Chrome browser via extension

Readme

supersurf-mcp

Free and open-source MCP server for browser automation — gives AI agents control of a real Chrome browser via a Chrome extension.

Works with any LLM that supports the Model Context Protocol: Claude, GPT, Gemini, open-source models, or your own. Every line of code is public on GitHub — no telemetry, no data collection.

Quick Start

curl -fsSL https://liquidbuiltit.github.io/Supersurf/install.sh | sh

The installer puts the supersurf CLI in ~/.local/bin (no sudo), starts the daemon, and walks you through installing the Chrome extension. Then register the server:

claude mcp add supersurf -- supersurf mcp

Re-run the installer to upgrade. Add --yes for CI, Docker, or an agent, where it never prompts.

Without the CLI

This package works on its own — any client that can run npx needs nothing installed. You install the extension yourself, from the Chrome Web Store.

Claude Code:

claude mcp add supersurf -- npx supersurf-mcp@latest

Claude Desktop — add to your MCP config:

{
  "mcpServers": {
    "supersurf": {
      "command": "npx",
      "args": ["supersurf-mcp@latest"]
    }
  }
}

Then use it

Your agent calls connect to start the session, a daemon auto-starts, the extension connects, and 28 browser tools become available.

Tools

| Tool | Description | |------|-------------| | connect / disconnect / status | Session lifecycle (connect accepts optional profile for isolated Chromium) | | profile_create / profile_list / profile_delete | Manage isolated Chromium profiles | | browser_tabs | List, create, attach, or close tabs | | browser_navigate | Go to URL, back, forward, reload | | browser_interact | Click, type, press keys, hover, scroll, wait, select, upload files | | browser_snapshot | Accessibility tree as structured DOM | | browser_lookup | Find elements by visible text | | browser_extract_content | Page content as clean markdown | | browser_take_screenshot | Viewport, full page, element, or region | | browser_evaluate | Run JavaScript in page context | | browser_fill_form | Set multiple form fields at once | | browser_network_requests | Monitor, inspect, and replay network traffic | | browser_console_messages | Read console output | | browser_get_element_styles | Inspect computed CSS | | browser_drag | Drag and drop | | browser_window | Resize, minimize, maximize | | browser_verify_text_visible | Assert text is on page | | browser_verify_element_visible | Assert element is visible | | browser_pdf_save | Export page as PDF | | browser_handle_dialog | Accept/dismiss alerts and prompts | | browser_list_extensions | List installed extensions | | browser_performance_metrics | Web Vitals (FCP, LCP, CLS, TTFB) | | browser_download | Download a file via the browser | | browser_storage | Inspect/modify localStorage and sessionStorage | | secure_fill | Fill a field with a credential from an env var, or list available credential names (agent never sees the value). Being deprecated in favor of a keychain-backed system. |

CLI Flags

--debug              Verbose logging + hot reload
--debug=no_truncate  Full payloads, no truncation
--port <n>           WebSocket port (default: 5555)
--log-file <path>    Custom log file path
--script-mode        JSON-RPC over stdio without MCP framing
--disable-secure-eval  Disable the default-on secure_eval analysis for browser_evaluate

secure_eval (AST + Proxy-membrane analysis of browser_evaluate code) is on by default — it is not an experiment. Turn it off with --disable-secure-eval or SUPERSURF_DISABLE_SECURE_EVAL=1.

Pass flags via your MCP config:

{
  "args": ["supersurf-mcp@latest", "--debug", "--port", "5555"]
}

How It Works

AI Agent  -->  MCP Server (stdio)  -->  Daemon (Unix socket)  -->  WebSocket  -->  Chrome Extension  -->  Browser

A standalone daemon multiplexes multiple MCP sessions through a single Chrome extension connection. All DOM interaction goes through Chrome content scripts (isolated world, invisible to page JS). CDP is only used for screenshots, network interception, and PDF export. Your agent browses with your real browser profile — cookies, history, localStorage, extensions.

Experimental Features

Configure via ~/.supersurf/config.json (requires a daemon restart) or the SUPERSURF_EXPERIMENTS env var:

| Experiment | Description | |------------|-------------| | page_diffing | Returns only DOM changes after interactions | | smart_waiting | Adaptive DOM stability + network idle detection | | mouse_humanization | Human-like Bezier mouse trajectories |

Requirements

License

Apache-2.0 with Commons Clause — free to use, modify, and redistribute, but not to sell. 100% open source.

Full documentation


If SuperSurf is useful to you, consider giving us a star on GitHub — it helps others discover the project.