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

chrome-agent-mcp

v1.0.0

Published

MCP server for Chrome — multi-tab parallel control, DevTools inspection, browser management

Readme

chrome-agent-mcp

MCP server for Chrome — gives Claude (or any MCP client) full control over your browser: multi-tab parallel execution, DevTools inspection, tab groups, screenshot capture, and a real-time dashboard via a companion Chrome extension.

Features

  • Multi-tab parallel control — open, switch, and operate multiple tabs simultaneously
  • Full browser automation — click, type, scroll, fill forms, press keys, hover
  • DevTools access — console logs, network requests, DOM elements, storage inspection
  • Tab groups — isolate work into named groups (CLAUDE #1, CLAUDE #2, ...)
  • Live favicon animation — tabs show a blinking Claude robot while the agent is active
  • Real-time dashboard — companion extension shows active tabs, event log, and screenshots
  • Chrome window management — list windows, focus specific windows, inspect extensions

Requirements

  • Node.js 18+
  • Google Chrome (with remote debugging enabled)

Installation

1. Start Chrome with remote debugging

google-chrome --remote-debugging-port=9222

Or add it to your Chrome shortcut/launcher permanently.

2. Install the MCP server

npx chrome-agent-mcp

Or install globally:

npm install -g chrome-agent-mcp

3. Add to your MCP client config

For Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "chrome-agent-mcp": {
      "command": "npx",
      "args": ["chrome-agent-mcp"],
      "env": {
        "CHROME_DEBUG_PORT": "9222"
      }
    }
  }
}

For Claude Code (.claude/settings.json):

{
  "mcpServers": {
    "chrome-agent-mcp": {
      "command": "node",
      "args": ["/path/to/chrome-agent-mcp/dist/index.js"],
      "env": {
        "CHROME_DEBUG_PORT": "9222"
      }
    }
  }
}

4. Install the companion extension (optional but recommended)

  1. Open Chrome → chrome://extensions/
  2. Enable Developer mode
  3. Click Load unpacked → select the extension/ folder

The extension adds a popup dashboard showing active tabs, agent events, and captured screenshots in real time.

Available Tools

| Tool | Description | |------|-------------| | browser_tabs | Open, close, switch, list, and group tabs | | browser_navigate | Navigate to a URL | | browser_navigate_back / browser_navigate_forward | Browser history navigation | | browser_reload | Reload the current tab | | browser_snapshot | Get the accessibility tree of the page | | browser_take_screenshot | Capture a screenshot | | browser_evaluate | Execute JavaScript in the page | | browser_click | Click an element | | browser_type | Type text into an element | | browser_hover | Hover over an element | | browser_press_key | Press a keyboard key | | browser_scroll | Scroll the page | | browser_select_option | Select a dropdown option | | browser_fill_form | Fill multiple form fields at once | | browser_wait_for | Wait for an element or condition | | devtools_console | Read browser console logs | | devtools_network | Inspect network requests | | devtools_elements | Inspect DOM elements | | devtools_storage | Read cookies, localStorage, sessionStorage | | chrome_windows | List all Chrome windows | | chrome_focus | Focus a specific window | | chrome_extensions | List installed extensions |

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | CHROME_DEBUG_PORT | 9222 | Chrome remote debugging port |

License

MIT