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

@this-npm-test-org/connection-browser-mcp

v0.1.3

Published

MCP server for headless browser automation. Navigate pages, fill forms, take screenshots, and extract content.

Readme

Browser

MCP server for headless browser automation powered by Playwright. Navigate web pages, interact with elements, fill forms, take screenshots, and extract structured content. Runs a real Chromium browser instance with full JavaScript support.

Useful for web scraping, automated testing, capturing page screenshots for review, filling out web forms, extracting data from dynamic single-page applications, and monitoring web applications.

Install

amodal install mcp browser

Tools exposed

  • navigate — Navigate to a URL. Waits for the page to load (configurable wait: load, domcontentloaded, networkidle). Returns page title and final URL after redirects.
  • screenshot — Capture a screenshot of the current page or a specific element. Returns a base64-encoded PNG. Supports full-page capture and custom viewport sizes.
  • click — Click an element by CSS selector or text content. Waits for the element to be visible and clickable.
  • fill — Fill a form field by CSS selector with a text value. Clears existing content first.
  • select — Select an option from a dropdown by value, label, or index.
  • get_text — Extract visible text content from the page or a specific element. Strips HTML tags and normalizes whitespace.
  • get_html — Get the HTML source of the page or a specific element. Useful for structured data extraction.
  • evaluate — Execute JavaScript in the browser context and return the result. For advanced extraction or interaction.
  • wait_for — Wait for an element matching a selector to appear, disappear, or become visible. Configurable timeout.

Configuration

env:
  MCP_BROWSER_HEADLESS: "true"
  MCP_BROWSER_VIEWPORT_WIDTH: "1280"
  MCP_BROWSER_VIEWPORT_HEIGHT: "720"
  • MCP_BROWSER_HEADLESS — Run in headless mode. Defaults to true. Set to false for debugging.
  • MCP_BROWSER_VIEWPORT_WIDTH — Browser viewport width in pixels. Defaults to 1280.
  • MCP_BROWSER_VIEWPORT_HEIGHT — Browser viewport height in pixels. Defaults to 720.
  • MCP_BROWSER_TIMEOUT — Default navigation timeout in milliseconds. Defaults to 30000.

Example usage

  • "Go to our staging site and take a screenshot of the dashboard page"
  • "Scrape the pricing table from competitor.com and put it in a spreadsheet"
  • "Fill out the contact form on our website with test data and submit it"
  • "Extract all product names and prices from this e-commerce category page"