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

aether-mcp-server

v2.1.1

Published

Aether MCP Server - AI Browser Controller

Readme

Aether — AI Browser Controller

Give your AI agent a real browser. Aether is an MCP server that lets Claude, Cursor, Kilo Code, Codex, and other AI coding agents inspect and control a live browser through the Chrome DevTools Protocol — no extension needed.

Install

npx -y aether-mcp-server

Or globally:

npm install -g aether-mcp-server

MCP Client Config

{
  "mcpServers": {
    "aether": {
      "command": "npx",
      "args": ["-y", "aether-mcp-server"]
    }
  }
}

If installed globally:

{
  "mcpServers": {
    "aether": {
      "command": "aether-mcp-server",
      "args": []
    }
  }
}

No cloning. No building. No absolute paths.

What It Does

  • Launches or connects to Chrome, Edge, Brave, or Firefox with remote debugging
  • Click by text, role, label, or placeholder — not fragile CSS selectors
  • Native CDP keyboard and mouse events, not DOM simulation
  • Smart page snapshots that auto-invalidate on DOM changes
  • Set-of-Marks visual element references for screenshot-based workflows
  • Shadow DOM and same-origin iframe support built in

Browser Setup

launch_browser()
launch_browser(browser="chrome")
launch_browser(browser="edge")
launch_browser(browser="brave")

Connect to an existing browser:

chrome --remote-debugging-port=9222
connect_browser(mode="connect", port=9222)

Key Tools

| Tool | What it does | |---|---| | browser_status | Connection and active tab status | | snapshot_compact | Fast title, URL, and interactive element list | | list_interactive_elements | Element refs for click/fill flows | | click_text, click_role, fill_label | Semantic actions | | click_by_ref, fill_by_selector | Direct element targeting | | get_state | Screenshot, tabs, DOM snapshot | | get_logs, get_network_errors | Live debugging output | | act | Broad compatibility action tool |

Project-Local Learning

Aether stores learned lessons and reusable skills inside your project under .aether/ — lightweight automation notes that make future runs faster. Call configure_aether_memory with your project root to enable it.

Environment Variables

| Variable | Purpose | |---|---| | AETHER_MODE | "cdp" (default) or "extension" | | AETHER_PROJECT_ROOT | Fallback project root for aether memory |

Requirements

  • Node.js >= 18
  • Chrome, Edge, Brave, or Firefox

License

ISC