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

@fy2ne/weavetab

v2.0.1

Published

Local MCP server that attaches to Chrome via CDP and exposes semantic browser control to any AI agent. No extensions. No cloud. Zero screenshots by default.

Downloads

649

Readme

WeaveTab V2

The Zero-Setup Local Browser MCP for AI Agents

npm version License: MIT

WeaveTab is a lightweight, local Model Context Protocol (MCP) server that empowers AI agents to seamlessly interact with web browsers using Chrome DevTools Protocol (CDP).

Unlike other solutions, WeaveTab is completely autonomous and zero-setup. It automatically launches a sandboxed browser profile parallel to your daily browsing—meaning you never have to close your browser or mess with debugging ports again.

🌟 Key Features

  • Zero-Setup Autonomous Browser: Runs completely parallel to your existing browser via an isolated sandbox. No manual port configuration, no closing your personal browser.
  • No Extensions Required: Connects directly via native CDP.
  • Semantic Action Map: weave_read returns a parsed, highly compressed DOM semantic map, significantly reducing token consumption.
  • Sniper Mode Actions: weave_click and weave_type automatically locate and interact with elements in one step based on their intent or label.
  • Local & Secure: No cloud dependencies. Built-in rate limiting and optional Safe Mode.
  • Screenshot Support: Optionally use weave_screenshot to capture current tabs, or weave_peek for targeted vision on specific elements/canvas.

🚀 Quick Start (MCP Integration)

The easiest way to use WeaveTab is via npx. Add the following to your MCP client configuration (e.g., Cursor, OpenCode, Claude Desktop).

Cursor / OpenCode

Add this to your IDE's MCP configuration settings:

{
  "mcpServers": {
    "weavetab": {
      "command": "npx",
      "args": ["-y", "@fy2ne/weavetab@latest"]
    }
  }
}

Claude Desktop

Edit your claude_desktop_config.json:

{
  "mcpServers": {
    "weavetab": {
      "command": "npx",
      "args": ["-y", "@fy2ne/weavetab@latest"]
    }
  }
}

🛠️ Tool Arsenal

WeaveTab exposes a rich set of specialized tools for your AI:

  • weave_read: Reads the page and returns a semantic action map.
  • weave_click: Clicks elements by label, intent, or ID.
  • weave_type: Types text into forms securely.
  • weave_navigate: Navigates to a target URL.
  • weave_scroll: Scrolls up, down, top, or bottom.
  • weave_wait: Wait for specific states (navigation, element, DOM stability).
  • weave_tabs: List open tabs or switch between them.
  • weave_extract: Extract visible content to text or JSON.
  • weave_screenshot: Capture a PNG of the current view.
  • weave_peek: Targeted vision over specific coordinates.
  • weave_key: Press physical keys and modifiers.
  • weave_find: Find elements semantically without extracting the full page.

🛡️ Security & Configuration

WeaveTab respects your system. It actively refuses to run as root/sudo.

On first run, WeaveTab generates a configuration file at ~/.weavetab/config.json:

{
  "safeMode": false,
  "allow": [],
  "rateLimitMs": 1000,
  "preferredBrowser": "google-chrome",
  "persistentProfile": false,
  "screenshot": true,
  "peek": true
}

Safety Features

  • Storage hard-block: Disables scripts accessing cookies/localStorage in specific environments.
  • Root Detection: Exits if run with root permissions.
  • Domain Allowlist: Prevents your agent from going to untrusted sites when safeMode is active.
  • Audit Logging: Every action taken by the AI is cleanly logged locally at ~/.weavetab/audit.log for your review.

🤝 Contributing

Contributions are welcome!

git clone https://github.com/fy2ne/WeaveTab.git
cd WeaveTab
npm install
npm run build

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.