Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

browser-use浏览器使用

Agent Skill

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

总安装

1,839

周安装

79

GitHub Stars

926

下载量

645
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:browser-use(浏览器使用)
来源仓库:https://github.com/saik0s/mcp-browser-use
仓库路径:skills/browser-use
安装命令:
npx skills add https://github.com/saik0s/mcp-browser-use --skill browser-use
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/saik0s/mcp-browser-use --skill browser-use

简介

browser-use 用于处理浏览器自动化、网页检查和页面信息提取,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。

  • 适用于浏览器自动化与信息提取场景,可结合来源仓库和原始 README 进一步核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议核实是否会触发联网、命令执行或文件读写操作,避免影响系统安全。
  • 当前暂无详细功能说明,建议参考原始 SKILL.md 获取完整能力描述和使用示例。

SKILL.md

Browser Use

AI-powered browser automation for web interactions, research, and data extraction powered by the browser-use library.

When to Use

  • Automate web interactions (fill forms, click buttons, navigate pages)
  • Perform deep research across multiple web sources
  • Extract structured data from web pages
  • Learn and replay browser workflows as reusable skills
  • Monitor and manage long-running browser automation tasks

Core Tools

run_browser_agent

Execute a browser automation task using AI. Supports skill-based execution, learning mode, and background task execution.

Parameters:

  • task (string, required) - Natural language description of what to do in the browser
  • max_steps (integer, optional) - Maximum number of agent steps (default: from settings)
  • skill_name (string, optional) - Name of a learned skill to use for hints
  • skill_params (string or dict, optional) - Parameters for the skill (JSON string or dict)
  • learn (boolean, optional) - Enable learning mode to discover and extract APIs
  • save_skill_as (string, optional) - Name to save learned skill (requires learn=True)

Returns: Result of the browser automation task. In learning mode, includes skill extraction status.

Examples:

# Basic usage
Search for "Claude Code plugins" on Google and summarize the top 3 results

# With max steps
Fill out the contact form at https://example.com/contact with my information
max_steps: 20

# Learning mode - discover and save a skill
Go to GitHub trending page and extract the top 5 repositories
learn: true
save_skill_as: github_trending

# Using a learned skill
task: Get trending Python repositories
skill_name: github_trending
skill_params: {"language": "python", "limit": 10}

run_deep_research

Perform multi-source research on a topic with AI-guided search and synthesis.

Parameters:

  • topic (string, required) - The research topic or question to investigate
  • max_searches (integer, optional) - Maximum number of web searches (default: from settings)
  • save_to_file (string, optional) - Optional file path to save the research report

Returns: A comprehensive research report in markdown format

Examples:

# Basic research
What are the latest developments in AI-powered browser automation?

# With search limit
Research the security implications of CDP-based browser automation
max_searches: 10

# Save to file
Compare Playwright, Puppeteer, and Selenium for 2025
save_to_file: /path/to/research/browser-automation-comparison.md

Skill Management Tools

skill_list

List all available learned browser skills with usage statistics.

Parameters: None

Returns: JSON list of skill summaries with name, description, success rate, usage count, and last used timestamp

Example:

{
  "skills": [
    {
      "name": "github_trending",
      "description": "Extract trending repositories from GitHub",
      "success_rate": 95.0,
      "usage_count": 20,
      "last_used": "2025-12-20T18:00:00"
    }
  ],
  "skills_directory": "/Users/user/.config/browser-skills"
}

skill_get

Get full details of a specific skill including API endpoints, parameters, and execution hints.

Parameters:

  • skill_name (string, required) - Name of the skill to retrieve

Returns: Full skill definition in YAML format

Example:

skill_name: github_trending

skill_delete

Delete a learned skill by name.

Parameters:

  • skill_name (string, required) - Name of the skill to delete

Returns: Success or error message

Example:

skill_name: outdated_skill

Task Management Tools

health_check

Check if the browser automation server is running and get system statistics.

Parameters: None

Returns: JSON with server health status, uptime, memory usage, and running tasks

Example Response:

{
  "status": "healthy",
  "uptime_seconds": 3600.5,
  "memory_mb": 256.3,
  "running_tasks": 2,
  "tasks": [
    {
      "task_id": "a1b2c3d4",
      "tool": "run_browser_agent",
      "stage": "navigating",
      "progress": "5/100",
      "message": "Searching Google..."
    }
  ],
  "stats": {
    "total_completed": 45,
    "total_failed": 2,
    "avg_duration_sec": 32.1
  }
}

task_list

List recent browser automation and research tasks with filtering.

Parameters:

  • limit (integer, optional) - Maximum number of tasks to return (default: 20)
  • status_filter (string, optional) - Filter by status: "running", "completed", "failed", "pending"

Returns: JSON list of recent tasks

Example:

# List recent tasks
limit: 10

# List only running tasks
status_filter: running
limit: 5

# List failed tasks
status_filter: failed

task_get

Get detailed information about a specific task including input, output, and progress.

Parameters:

  • task_id (string, required) - Task ID (full UUID or prefix match)

Returns: JSON with complete task details, timestamps, and result/error

Example:

task_id: a1b2c3d4

task_cancel

Cancel a running browser agent or research task.

Parameters:

  • task_id (string, required) - Task ID (full UUID or prefix match)

Returns: JSON with success status and message

Example:

task_id: a1b2c3d4

Common Workflows

Web Research Workflow

  1. Use run_deep_research with your research question
  2. Review the synthesized markdown report
  3. Use run_browser_agent for follow-up exploration of specific sources
  4. Check task_list to monitor progress
# Step 1: Deep research
run_deep_research
topic: What are the best practices for MCP server development in 2025?
max_searches: 8

# Step 2: Follow-up investigation
run_browser_agent
task: Go to the top-ranked article and extract code examples

Form Automation Workflow

  1. Use run_browser_agent with task describing the form
  2. Include URL if known, or let agent search for it
  3. Agent navigates, fills fields, and submits
  4. Use task_get to verify completion
run_browser_agent
task: Fill out the contact form at https://example.com/contact with name "John Doe", email "john@example.com", and message "Request for demo"
max_steps: 30

Learning and Reusing Skills

  1. Run run_browser_agent with learn: true to discover APIs
  2. Agent records network calls and extracts patterns
  3. Save skill with save_skill_as
  4. Use skill_list to see learned skills
  5. Reuse with skill_name parameter for faster execution
# Step 1: Learn a skill
run_browser_agent
task: Go to Hacker News and extract the top 10 stories with titles, URLs, and scores
learn: true
save_skill_as: hackernews_top_stories

# Step 2: List learned skills
skill_list

# Step 3: Reuse the skill (faster direct execution)
run_browser_agent
task: Get current top stories from Hacker News
skill_name: hackernews_top_stories
skill_params: {"limit": 5}

Long-Running Task Management

  1. Start a browser automation task (runs in background)
  2. Use task_list to check status
  3. Use task_get for detailed progress
  4. Use task_cancel if needed
# Step 1: Start task
run_browser_agent
task: Research all articles on example.com blog and create a summary
max_steps: 200

# Step 2: Check progress
task_list
status_filter: running

# Step 3: Get details
task_get
task_id: a1b2c3d4

# Step 4: Cancel if needed
task_cancel
task_id: a1b2c3d4

Advanced Features

Skill-Based Execution

When a skill is learned with API endpoints, it supports direct execution which bypasses the AI agent for much faster performance:

  • First run: Agent explores the website (60-120 seconds)
  • Skill learned: API patterns extracted and saved
  • Subsequent runs: Direct API calls (2-5 seconds)

Fallback behavior: If direct execution fails (auth required, API changed), automatically falls back to agent-based execution.

Progress Tracking

Both run_browser_agent and run_deep_research support real-time progress tracking:

  • Step-by-step navigation updates
  • Progress percentage (current step / total steps)
  • Current stage (initializing, navigating, extracting, analyzing)
  • Task message (current action description)

Background Task Support

Long-running tasks automatically run in background when requested by the MCP client:

  • Tasks tracked in SQLite database
  • Persistent across server restarts
  • Query status anytime with task_list and task_get
  • Cancel with task_cancel

Configuration

The browser-use MCP server can be configured via ~/.config/mcp-server-browser-use/config.json or environment variables. Key settings:

  • browser.headless - Run browser in headless mode (default: true)
  • browser.cdp_url - Connect to external Chrome via CDP (optional)
  • agent.max_steps - Default maximum steps (default: 100)
  • research.max_searches - Default research searches (default: 5)
  • skills.enabled - Enable skill learning and execution (default: true)
  • skills.directory - Where to store learned skills (default: ~/.config/browser-skills/)

Troubleshooting

Server Not Responding

# Check server health
health_check

# Check if server is running
# In terminal: mcp-server-browser-use status

Task Stuck or Failing

# List running tasks
task_list
status_filter: running

# Get task details
task_get
task_id: <task_id>

# Cancel if stuck
task_cancel
task_id: <task_id>

Skill Execution Fails

# Get skill details to verify parameters
skill_get
skill_name: my_skill

# Try without skill to re-learn
run_browser_agent
task: <original task>
learn: true
save_skill_as: my_skill_v2

Best Practices

  1. Start with health_check - Verify server is ready before running tasks
  2. Use descriptive task names - Help the AI understand your intent clearly
  3. Set reasonable max_steps - 30-50 for simple tasks, 100-200 for complex research
  4. Learn frequently-used workflows - Save time with skill-based execution
  5. Monitor long tasks - Use task_list and task_get to track progress
  6. Clean up failed tasks - Use task_cancel to free resources
  7. Save research to files - Use save_to_file to preserve research reports

Limitations

  • Browser automation requires the MCP server to be running as a daemon
  • CDP-based browsers must be on localhost (security restriction)
  • Some websites may block automation (respect robots.txt and rate limits)
  • Skill learning requires successful task completion and API discovery
  • Task cancellation may take a few seconds to complete gracefully

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.7%
按下载量换算179

windsurf

23.64%
按下载量换算152

trae

18.38%
按下载量换算119

OpenCode

13.6%
按下载量换算88

Cursor

8.4%
按下载量换算54

Codex

3.31%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills