Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

browsermcpbrowsermcp 表格

Agent Skill

browsermcp 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,616

周安装

609

GitHub Stars

公开资料未说明

下载量

4,872
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:browsermcp(browsermcp 表格)
来源仓库:https://github.com/frankausberlin/browsermcp
安装命令:
openclaw skills install browsermcp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install browsermcp

简介

通过 MCP 服务器和 Chrome 扩展实现浏览器任务自动化。

  • 可用于网站导航、表单填写、元素点击及屏幕截图等操作。
  • 支持与外部系统集成,实现跨平台协作流程。
  • 使用前需安装配套扩展并配置服务器连接参数,确保网络策略允许通信。
  • browsermcp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
browsermcp-skill
description
Automate browser tasks using the BrowserMCP MCP server and Chrome extension. Use for navigating websites, filling forms, clicking elements, taking screenshots, and retrieving console logs using the user's existing browser profile with authenticated sessions and stealth capabilities.

BrowserMCP Skill

This skill enables MCP Clients to automate browser interactions through the BrowserMCP protocol. It leverages a local MCP server and a Chrome extension to control the user's actual browser session, allowing for authenticated actions and bypassing common bot detection.

Key Features

  • Fast: Automation happens locally without network latency
  • 🔒 Private: Browser activity stays on the device
  • 👤 Logged In: Uses existing browser profile with active sessions
  • 🥷 Stealth: Avoids basic bot detection and CAPTCHAs via real browser fingerprint

Prerequisites

Before using BrowserMCP automation:

  1. MCP Server: BrowserMCP server must be running (via npx)
  2. Chrome Extension: Browser MCP Chrome extension must be installed and connected
  3. Active Tab: The target browser tab must be connected via the extension
[!IMPORTANT] The AI can only control tabs that are actively "Connected" via the Browser MCP extension. If you switch tabs, you must reconnect the new tab.

Core Workflow

The standard browser automation process follows an iterative approach:

flowchart TD
    A[Navigate to URL] --> B[Take Snapshot]
    B --> C[Identify Elements]
    C --> D[Interact: Click/Type/etc]
    D --> E[Wait for Changes]
    E --> B
    E --> F[Verify: Screenshot/Logs]

Standard Pattern

StepToolPurposeKey Consideration
1navigateOpen the target URLEnsure extension is connected first
2snapshotCapture ARIA tree to identify interactive elementsRefresh after any page changes
3click / typeInteract with page elementsUse exact ref from snapshot
4waitPause for dynamic content to loadEssential after navigation/clicks
5screenshotVisually verify resultsUse when uncertain about state
6get_console_logsDebug JavaScript errorsCheck when interactions fail

Quick Reference

Essential Tools

ToolUse WhenParameters
navigateOpening a new pageurl - full URL including protocol
snapshotUnderstanding page structureNone - returns ARIA accessibility tree
clickActivating buttons/linkselement (description), ref (exact ID from snapshot)
typeFilling input fieldselement, ref, text, submit (optional)
hoverTriggering hover menuselement, ref
select_optionChoosing from dropdownselement, ref, values (array)
press_keyKeyboard shortcutskey - e.g., "Enter", "Escape", "ArrowDown"
waitAllowing page to loadtime - seconds to wait
screenshotVisual verificationNone - returns PNG image
get_console_logsDebugging errorsNone - returns recent console output
go_back / go_forwardNavigation historyNone

Common Key Values

Navigation:    Enter, Escape, Tab
Editing:       Backspace, Delete
Arrows:        ArrowUp, ArrowDown, ArrowLeft, ArrowRight
Modifiers:     Control, Alt, Shift, Meta (combine via modifiers array)
Function:      F1-F12
Other:         Home, End, PageUp, PageDown, Space

Usage Examples

Example 1: Search on Google

// Step 1: Navigate to search engine
navigate(url="https://google.com")

// Step 2: Type search query (use snapshot to find the ref)
type(element="Google search box", ref="e12", text="BrowserMCP automation", submit=true)

// Alternative: Type then press Enter separately
type(element="Search box", ref="e12", text="BrowserMCP automation")
press_key(key="Enter")

Example 2: Fill and Submit a Login Form

// Step 1: Navigate to login page
navigate(url="https://example.com/login")

// Step 2: Get snapshot to identify form fields
snapshot()

// Step 3: Fill username field
type(element="Username or email field", ref="e5", text="user@example.com")

// Step 4: Fill password field
type(element="Password field", ref="e7", text="password123")

// Step 5: Click login button
click(element="Sign in button", ref="e9")

// Step 6: Wait for redirect
wait(time=2)

// Step 7: Verify successful login with screenshot
screenshot()

Example 3: Navigate and Extract Information

// Navigate to documentation
navigate(url="https://docs.browsermcp.io")

// Wait for page load
wait(time=1)

// Capture accessibility tree to understand structure
snapshot()

// Click on a documentation link
click(element="API Reference link", ref="e15")

// Wait for content to load
wait(time=1)

// Take screenshot for verification
screenshot()

// Check for any JavaScript errors
get_console_logs()

Example 4: Handle Dynamic Content

// Navigate to page with dynamic content
navigate(url="https://example.com/dashboard")

// Wait for initial load
wait(time=2)

// Take snapshot to see available elements
snapshot()

// Click element that triggers dynamic content
click(element="Load more button", ref="e22")

// Wait for new content to appear
wait(time=2)

// Refresh snapshot to see new elements
snapshot()

// Interact with newly loaded element
click(element="New item", ref="e45")

Best Practices

1. Always Use Snapshots for Element Identification

Good:

// Take snapshot first, then use exact refs
snapshot()
click(element="Submit button", ref="e12")

Bad:

// Guessing selectors without snapshot
click(element="button.submit")  // May not work with dynamic DOM

2. Wait After Navigation and Major Actions

Dynamic web applications often load content asynchronously. Always wait after:

  • Navigation to a new page
  • Clicking buttons that trigger requests
  • Submitting forms
click(element="Load data button", ref="e8")
wait(time=2)  // Wait for data to load
snapshot()    // Then get fresh page structure

3. Handle Connection Requirements

Before any automation:

  1. Verify the Browser MCP extension is installed
  2. Ensure the target tab is connected (user must click "Connect")
  3. If connection errors occur, remind the user to reconnect

4. Use Screenshots for Debugging

When interactions fail:

// Take screenshot to see current page state
screenshot()

// Check console for JavaScript errors
get_console_logs()

// Re-snapshot to see updated element refs
snapshot()

5. Respect Privacy and Security

  • BrowserMCP uses the user's actual browser profile
  • Be cautious with sensitive data
  • User remains logged into their services
  • All actions happen locally on the device

Reference Navigation

FileContents
references/setup.mdDetailed installation and configuration for MCP server and Chrome extension
references/tools.mdComplete tool reference with parameters and detailed examples
references/best-practices.mdAdvanced patterns, error handling, and troubleshooting techniques
references/workflows.mdCommon workflow patterns (forms, authentication, scraping, etc.)

Troubleshooting

Connection Errors

Error: "No connection to browser extension"

Solution:

  1. User must click the Browser MCP extension icon in Chrome toolbar
  2. Click "Connect" button on the target tab
  3. Only connected tabs can be automated

Element Not Found

Error: Element reference invalid or element not found

Solution:

  1. Take a fresh snapshot() - the DOM may have changed
  2. Use the new ref values from the updated snapshot
  3. Dynamic content may require wait() before snapshot

Action Blocked or Failed

Error: Click/type action didn't work as expected

Solution:

  1. Take a screenshot() to see current page state
  2. Check get_console_logs() for JavaScript errors
  3. Verify element is visible and enabled in snapshot
  4. Check for browser-level popups or security prompts
  5. Ensure the page has finished loading

CAPTCHA or Bot Detection

Note: BrowserMCP helps avoid basic bot detection by using the real browser profile. However:

  • Some sites may still present challenges
  • Rate limiting may apply to rapid interactions
  • User may need to manually solve some CAPTCHAs

Comparison: BrowserMCP vs Playwright MCP

FeatureBrowserMCPPlaywright MCP
BrowserUser's existing browserNew browser instance
ProfileUses existing profile with cookiesIsolated profile
AuthenticationAlready logged inMust log in each session
Bot DetectionLower (real fingerprint)Higher
Multi-tabOne tab at a timeMultiple tabs supported
Best ForPersonal automation, testing logged-in flowsTesting, CI/CD, isolated sessions

Tips for Effective Automation

  1. Start with navigate + wait + snapshot - Establish baseline page state
  2. Use descriptive element names - Helps with debugging and clarity
  3. Take screenshots at checkpoints - Visual verification catches issues early
  4. Check console logs after errors - JavaScript errors explain many failures
  5. Wait strategically - Too short = flakiness, too long = slowness
  6. Refresh snapshots after interactions - DOM changes invalidate old refs
  7. Use submit=true for forms - Cleaner than separate press_key("Enter")
  8. Combine actions efficiently - Group related operations to minimize round-trips

Resources

  • BrowserMCP Website: https://browsermcp.io
  • Documentation: https://docs.browsermcp.io
  • Chrome Extension: Search "Browser MCP" in Chrome Web Store
  • GitHub: https://github.com/browsermcp/mcp
  • Based on: Playwright MCP

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.17%
按下载量换算4,588

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills