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

v1.1.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

1. Install the Chrome extension

Install from the Chrome Web Store.

2. Register the MCP server

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"]
    }
  }
}

3. Use it

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

Tools

| Tool | Description | |------|-------------| | connect / disconnect / status | Session lifecycle | | 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_reload_extensions | Reload unpacked 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 (agent never sees the value) |

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

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.

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.