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

@yetidevworks/server

v1.1.1

Published

Model Context Protocol server that bridges Claude-style MCP clients to a live browser tab via YetiBrowser

Downloads

49

Readme

YetiBrowser MCP Server

This package exposes the CLI that bridges Model Context Protocol (MCP) clients to a live browser tab. It works together with the YetiBrowser MCP browser extension (Chrome/Firefox) so IDEs and agents can automate the tab you explicitly connect.

  • Transparent & local-first – the CLI and extension only communicate on localhost; no browsing data is sent elsewhere.
  • Feature-rich tooling – DOM snapshots, diffs, console capture, page state dumps, full-page screenshots, and standard navigation/input helpers.
  • Cross-client – compatible with Codex/Claude Code, Cursor, Windsurf, MCP Inspector, or any other MCP-aware client.

Installation

npm install -g @yetidevworks/server
# or run without installing
npx yetibrowser-mcp --ws-port 9010

Usage

  1. Install and load the YetiBrowser MCP browser extension.
  2. Start the server:
    yetibrowser-mcp --ws-port 9010
  3. Connect the tab via the extension popup and configure your MCP client to call the CLI (see the main repository README for examples).

The CLI communicates over stdio, so any MCP client can spawn it and exchange requests/responses.

Tools exposed

  • browser_snapshot – capture an accessibility-oriented snapshot of the current page.
  • browser_snapshot_diff – compare the two most recent snapshots to highlight DOM/ARIA changes.
  • browser_navigate – load a new URL in the connected tab and return an updated snapshot.
  • browser_go_back / browser_go_forward – move through history while keeping MCP in sync.
  • browser_wait – pause automation for a specified number of seconds.
  • browser_press_key – simulate a keyboard key press on the focused element.
  • browser_click – click the element identified by a CSS selector.
  • browser_hover – hover the pointer over the targeted element.
  • browser_type – type text (optionally submitting with Enter) into an editable element.
  • browser_select_option – choose one or more options in a <select> element.
  • browser_screenshot – capture a viewport or full-page screenshot via the DevTools protocol.
  • browser_get_console_logs – return recent console output, including errors with stack traces.
  • browser_page_state – dump forms, storage keys, and cookies for the connected page.

Development

This package is part of the YetiBrowser MCP monorepo. Clone the repo for contribution instructions, publishing steps, and privacy policy.