# Send Browser Automation to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "browser-automation-2",
    "name": "Browser Automation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/femto/browser-automation-2",
    "canonicalUrl": "https://clawhub.ai/femto/browser-automation-2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/browser-automation-2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-automation-2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "browser-automation-2",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T02:45:56.779Z",
      "expiresAt": "2026-05-08T02:45:56.779Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-automation-2",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-automation-2",
        "contentDisposition": "attachment; filename=\"browser-automation-2-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "browser-automation-2"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/browser-automation-2"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/browser-automation-2",
    "downloadUrl": "https://openagent3.xyz/downloads/browser-automation-2",
    "agentUrl": "https://openagent3.xyz/skills/browser-automation-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/browser-automation-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/browser-automation-2/agent.md"
  }
}
```
## Documentation

### Browser Automation (Chrome MCP Server)

Turn your Chrome browser into your intelligent assistant - Let AI take control of your browser.

### When to Use This Skill

Use this skill when the user:

Wants to automate browser tasks (clicking, filling forms, navigating)
Needs to take screenshots of web pages or elements
Wants to extract content from web pages
Asks to search browsing history or manage bookmarks
Needs to monitor network requests
Wants AI to interact with websites using their existing login sessions

### Step 1: Install the Native Bridge

npm install -g mcp-chrome-bridger
# or
pnpm install -g mcp-chrome-bridger
mcp-chrome-bridger register

### Step 2: Install Chrome Extension

Download from GitHub Releases:

Download mcp-chrome-extension-vX.X.X.zip
Open Chrome → chrome://extensions/
Enable "Developer mode"
Click "Load unpacked" and select the extracted folder
Click the extension icon → Click "Connect"

### Step 3: Configure MCP Client

Add to your MCP client configuration:

Streamable HTTP (Recommended):

{
  "mcpServers": {
    "chrome-mcp-server": {
      "type": "http",
      "url": "http://127.0.0.1:12306/mcp"
    }
  }
}

STDIO (Alternative):

{
  "mcpServers": {
    "chrome-mcp-server": {
      "command": "npx",
      "args": ["mcp-chrome-bridger", "stdio"]
    }
  }
}

### Browser Management

ToolDescriptionget_windows_and_tabsList all browser windows and tabschrome_navigateNavigate to URLs, control viewportchrome_switch_tabSwitch active tabchrome_close_tabsClose specific tabschrome_go_back_or_forwardBrowser history navigation

### Screenshots

ToolDescriptionchrome_screenshotCapture full page, viewport, or specific elements

### Content Analysis

ToolDescriptionchrome_get_web_contentExtract HTML/text from pageschrome_get_interactive_elementsFind clickable elementssearch_tabs_contentAI-powered semantic search across tabschrome_consoleCapture browser console output

### Interaction

ToolDescriptionchrome_click_elementClick elements via CSS selectorchrome_fill_or_selectFill forms and select optionschrome_keyboardSimulate keyboard input

### Data Management

ToolDescriptionchrome_historySearch browsing historychrome_bookmark_searchFind bookmarkschrome_bookmark_addAdd new bookmarkschrome_bookmark_deleteDelete bookmarks

### Network

ToolDescriptionchrome_network_capture_start/stopMonitor network requestschrome_network_requestSend HTTP requests with browser cookies

### Navigate and Screenshot

User: "Take a screenshot of github.com"

AI uses:
1. chrome_navigate(url: "https://github.com")
2. chrome_screenshot(fullPage: true)

### Fill a Form

User: "Login to my account on example.com"

AI uses:
1. chrome_navigate(url: "https://example.com/login")
2. chrome_fill_or_select(selector: "#email", value: "user@example.com")
3. chrome_fill_or_select(selector: "#password", value: "...")
4. chrome_click_element(selector: "button[type=submit]")

### Search History

User: "Find all pages I visited about React hooks last week"

AI uses:
1. chrome_history(text: "React hooks", startTime: "1 week ago")

### Extract Content

User: "What does this page say about pricing?"

AI uses:
1. chrome_get_web_content()
2. Analyzes the extracted content

### Advantages Over Playwright

FeaturePlaywright MCPChrome MCP ServerBrowser InstanceNew browser processYour existing ChromeLogin SessionsNeed to re-loginUses existing sessionsUser SettingsClean environmentYour bookmarks, extensions, settingsStartup TimeSlow (launch browser)Instant (extension already loaded)Resource UsageHeavyLightweight

### Multi-Client Support

Multiple AI clients can connect simultaneously:

Claude Code
Cursor
Kiro
Any MCP-compatible client

Each client gets its own session while sharing the same Chrome browser.

### Extension Not Connecting

Check extension is enabled in chrome://extensions/
Click extension icon → Verify "Connected" status
Restart Chrome if needed

### Port Already in Use

The server automatically handles port conflicts. If issues persist:

lsof -i :12306
kill <PID>

### Resources

GitHub: https://github.com/femto/mcp-chrome
npm: https://www.npmjs.com/package/mcp-chrome-bridger
Releases: https://github.com/femto/mcp-chrome/releases
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: femto
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T02:45:56.779Z
- Expires at: 2026-05-08T02:45:56.779Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/browser-automation-2)
- [Send to Agent page](https://openagent3.xyz/skills/browser-automation-2/agent)
- [JSON manifest](https://openagent3.xyz/skills/browser-automation-2/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/browser-automation-2/agent.md)
- [Download page](https://openagent3.xyz/downloads/browser-automation-2)