High Risk:This skill has significant security concerns. Review the findings below before installing.

fast-browser-use

Caution·Scanned 2/17/2026

High-risk browser-automation skill exposing arbitrary web navigation and in-browser code execution. It reads/stores session files (./auth.json), requires CHROME_PATH, and performs network navigation to remote sites like https://protected-site.com.

from clawhub.ai·v7630cee·346.0 KB·0 installs
Scanned from 1.0.0 at 7630cee · Transparency log ↗
$ vett add clawhub.ai/dalessandro07/fast-browser-useReview security findings before installing

Any contribution is very much welcome! Skill published in clawhub https://www.clawhub.ai/rknoche6/fast-browser-use

browser-use

A lightweight Rust library for browser automation via Chrome DevTools Protocol (CDP).

✨ Highlights

  • Zero Node.js dependency - Pure Rust implementation directly controlling browsers via CDP
  • Lightweight & Fast - No heavy runtime, minimal overhead
  • MCP Integration - Built-in Model Context Protocol server for AI-driven automation
  • Simple API - Easy-to-use tools for common browser operations

Installation

cargo add browser-use

Styling

cargo +nightly fmt

Quick Start

use browser_use::browser::BrowserSession;

// Launch browser and navigate
let session = BrowserSession::launch(Default::default())?;
session.navigate("https://example.com", None)?;

// Extract DOM with indexed interactive elements
let dom = session.extract_dom()?;

MCP Server

Run the built-in MCP server for AI-driven automation:

# Headless mode
cargo run --bin mcp-server

# Visible browser
cargo run --bin mcp-server -- --headed

Features

  • Navigate, click, input, screenshot, extract content
  • DOM extraction with indexed interactive elements
  • CSS selector or numeric index-based element targeting
  • Thread-safe browser session management

Requirements

  • Rust 1.70+
  • Chrome or Chromium installed