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

deeporax-browser-mcp

v0.1.21

Published

Deeporax Browser MCP: MCP server + Chrome extension bridge for real browser control (DOM snapshots, screenshots, clicks, console, network).

Readme

deeporax-browser-mcp

npm license

MCP server that controls a real Chrome browser through a companion MV3 extension: DOM snapshots with element refs, clicks, typing, screenshots, console and network reads, and navigation.

It drives your browser, with your profile and your logins, and shows an on-page overlay with a Stop button while the agent works.

npx -y deeporax-browser-mcp

Requires Node.js 18+.

Pick a runner

Configs below use npx. Any of these work:

| Runner | command | args | |---|---|---| | npm | npx | ["-y", "deeporax-browser-mcp"] | | Bun | bunx | ["deeporax-browser-mcp"] | | pnpm | pnpm | ["dlx", "deeporax-browser-mcp"] | | Yarn | yarn | ["dlx", "deeporax-browser-mcp"] | | Deno | deno | ["run", "-A", "npm:deeporax-browser-mcp"] | | Global | deeporax-browser-mcp | [] |

A global install starts faster and keeps the extension folder at a stable path:

npm  install -g   deeporax-browser-mcp
bun  add -g       deeporax-browser-mcp
pnpm add -g       deeporax-browser-mcp
yarn global add   deeporax-browser-mcp

Set up your client

Claude Code

claude mcp add deeporax-browser-mcp -- npx -y deeporax-browser-mcp

Cursor (~/.cursor/mcp.json), Windsurf (~/.codeium/windsurf/mcp_config.json), Claude Desktop, Cline, Roo Code, Gemini CLI, JetBrains AI Assistant, Warp, LM Studio:

{
  "mcpServers": {
    "deeporax-browser-mcp": {
      "command": "npx",
      "args": ["-y", "deeporax-browser-mcp"]
    }
  }
}

VS Code / GitHub Copilot (.vscode/mcp.json, note servers):

{
  "servers": {
    "deeporax-browser-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "deeporax-browser-mcp"]
    }
  }
}

Zed (context_servers), Codex CLI (~/.codex/config.toml), opencode, Continue, and Goose are covered in the full docs.

Extension

This package ships an unpacked Chrome extension in extension/.

  1. Print the folder path:

    node -e "const p=require('path');console.log(p.join(p.dirname(require.resolve('deeporax-browser-mcp/package.json')),'extension'))"

    Or run the browser_status tool, which prints it.

  2. Chrome → chrome://extensions → enable Developer modeLoad unpacked → select that folder

  3. Keep Chrome open. The toolbar badge shows ON when the MCP server is connected.

Works in Chrome, Edge, Brave, Arc, and other Chromium browsers. You can also grab extension-dist.zip from GitHub Releases.

Verify

Ask your MCP client:

use browser_status then snapshot my current tab

Agent loop (receipts)

Mutating write tools (browser_type, browser_clear, browser_fill_form) return a structured ActionResult / BulkResult receipt:

  • verified + before / after — the DOM value was read back (secrets redacted)
  • next.skipScreenshot / next.skipFullSnapshot — when true, do not re-observe just to confirm the write
  • refs.valid — whether prior snapshot refs should still work (true on same-document verified writes)
  • next.docontinue | fix | observe | wait

Prefer browser_fill_form for multi-field forms. Prefer browser_snapshot over browser_screenshot for structure. Screenshots are for visual/layout QA only.

Docs

Full tool list, overlay behavior, troubleshooting, security notes, and source install:

https://github.com/imfaisii/deeporax-browser-mcp

License

MIT