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

@apexradius/chrome-mcp

v1.0.0

Published

A Model Context Protocol (MCP) server for Chrome — giving Claude direct browser control via the Chrome DevTools Protocol with built-in stealth, per-tab concurrency, and persistent profiles.

Readme

@apexradius/chrome-mcp

Excellence in every detail.

A Model Context Protocol (MCP) server for Chrome — giving Claude direct control of your browser with stealth anti-detection, persistent profiles, and per-tab concurrency. Zero flags. Zero warnings.

Why This Exists

The existing chrome-devtools-mcp requires 5 workaround flags, shows Chrome warning banners, and crashes when multiple agents use it. This is a clean replacement.

Before:

{
  "command": "chrome-devtools-mcp",
  "args": [
    "--ignoreDefaultChromeArg=--disable-extensions",
    "--ignoreDefaultChromeArg=--enable-automation",
    "--ignoreDefaultChromeArg=--use-mock-keychain",
    "--ignoreDefaultChromeArg=--disable-sync",
    "--chromeArg=--disable-blink-features=AutomationControlled"
  ]
}

After:

{
  "command": "npx",
  "args": ["-y", "@apexradius/chrome-mcp"]
}

Features

  • 14 stealth patches — WebGL, canvas fingerprint, navigator properties, plugins, languages, connection, hardware, screen dimensions, headless UA cleanup, Chrome runtime stubs. Websites can't detect automation.
  • Persistent profile — cookies, extensions, saved passwords, Chrome sync all persist across sessions. Not incognito.
  • Per-tab concurrency — operations on different tabs run in parallel. No single global mutex bottleneck.
  • Connect-or-launch — reconnects to existing Chrome if running, launches new if not. State survives MCP restarts.
  • Zero config — uses your system Chrome, no bundled browser, no flags needed.

Requirements

  • Node.js 18+
  • Google Chrome installed

Installation

npm install -g @apexradius/chrome-mcp

Or run directly:

npx @apexradius/chrome-mcp

Setup

Add to ~/.mcp.json or Claude Desktop config:

{
  "mcpServers": {
    "chrome": {
      "command": "npx",
      "args": ["-y", "@apexradius/chrome-mcp"]
    }
  }
}

24 Tools

| Category | Count | Tools | |----------|-------|-------| | Navigation | 6 | navigate, new_page, close_page, list_pages, select_page, wait_for | | Interaction | 9 | click, fill, type_text, hover, press_key, drag, upload_file, handle_dialog, fill_form | | Inspection | 3 | take_screenshot, take_snapshot, evaluate_script | | Network | 2 | list_network_requests, get_network_request | | Console | 2 | list_console_messages, get_console_message | | Emulation | 2 | emulate, resize_page |

Environment Variables

| Variable | Required | Default | |----------|----------|---------| | CHROME_EXECUTABLE | No | Auto-detect system Chrome | | CHROME_PROFILE_DIR | No | ~/.config/apexradius/chrome-mcp/profile | | CHROME_HEADLESS | No | false |

Stealth

14 anti-detection patches run via page.evaluateOnNewDocument() before any page script:

  1. navigator.webdriverfalse
  2. Realistic window.chrome.runtime
  3. Realistic navigator.plugins
  4. navigator.languages['en-US', 'en']
  5. Permissions.prototype.query override
  6. WebGL vendor/renderer spoofing
  7. Canvas fingerprint noise
  8. navigator.connection → realistic 4g values
  9. navigator.hardwareConcurrency → 8
  10. navigator.deviceMemory → 8
  11. Screen dimensions → 1920x1080
  12. Headless user agent cleanup
  13. chrome.loadTimes() / chrome.csi() stubs
  14. iframe contentWindow cross-origin patch

No Chrome flags used. No warning banners.

License

MIT © Apex Radius Labs