# Send Playwright Mcp 1.0.0 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": "playwright-mcp-1-0-0",
    "name": "Playwright Mcp 1.0.0",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/itsjustFred/playwright-mcp-1-0-0",
    "canonicalUrl": "https://clawhub.ai/itsjustFred/playwright-mcp-1-0-0",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/playwright-mcp-1-0-0",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=playwright-mcp-1-0-0",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "examples.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "playwright-mcp-1-0-0",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T04:46:13.941Z",
      "expiresAt": "2026-05-14T04:46:13.941Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=playwright-mcp-1-0-0",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=playwright-mcp-1-0-0",
        "contentDisposition": "attachment; filename=\"playwright-mcp-1-0-0-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "playwright-mcp-1-0-0"
      },
      "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/playwright-mcp-1-0-0"
    },
    "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/playwright-mcp-1-0-0",
    "downloadUrl": "https://openagent3.xyz/downloads/playwright-mcp-1-0-0",
    "agentUrl": "https://openagent3.xyz/skills/playwright-mcp-1-0-0/agent",
    "manifestUrl": "https://openagent3.xyz/skills/playwright-mcp-1-0-0/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/playwright-mcp-1-0-0/agent.md"
  }
}
```
## Documentation

### Playwright MCP Skill

Browser automation powered by Playwright MCP server. Control Chrome, Firefox, or WebKit programmatically.

### Installation

npm install -g @playwright/mcp
# Or
npx @playwright/mcp

Install browsers (first time):

npx playwright install chromium

### Start MCP Server (STDIO mode)

npx @playwright/mcp

### Start with Options

# Headless mode
npx @playwright/mcp --headless

# Specific browser
npx @playwright/mcp --browser firefox

# With viewport
npx @playwright/mcp --viewport-size 1280x720

# Ignore HTTPS errors
npx @playwright/mcp --ignore-https-errors

### 1. Navigate and Extract Data

# MCP tools available:
# - browser_navigate: Open URL
# - browser_click: Click element
# - browser_type: Type text
# - browser_select_option: Select dropdown
# - browser_get_text: Extract text content
# - browser_evaluate: Run JavaScript
# - browser_snapshot: Get page structure
# - browser_close: Close browser

### 2. Form Interaction

1. browser_navigate to form URL
2. browser_type into input fields
3. browser_click to submit
4. browser_get_text to verify result

### 3. Data Extraction

1. browser_navigate to page
2. browser_evaluate to run extraction script
3. Parse returned JSON data

### MCP Tools Reference

ToolDescriptionbrowser_navigateNavigate to URLbrowser_clickClick element by selectorbrowser_typeType text into inputbrowser_select_optionSelect dropdown optionbrowser_get_textGet text contentbrowser_evaluateExecute JavaScriptbrowser_snapshotGet accessible page snapshotbrowser_closeClose browser contextbrowser_choose_fileUpload filebrowser_pressPress keyboard key

### Configuration Options

# Security
--allowed-hosts example.com,api.example.com
--blocked-origins malicious.com
--ignore-https-errors

# Browser settings
--browser chromium|firefox|webkit
--headless
--viewport-size 1920x1080
--user-agent "Custom Agent"

# Timeouts
--timeout-action 10000      # Action timeout (ms)
--timeout-navigation 30000  # Navigation timeout (ms)

# Output
--output-dir ./playwright-output
--save-trace
--save-video 1280x720

### Login to Website

browser_navigate: { url: "https://example.com/login" }
browser_type: { selector: "#username", text: "user" }
browser_type: { selector: "#password", text: "pass" }
browser_click: { selector: "#submit" }
browser_get_text: { selector: ".welcome-message" }

### Extract Table Data

browser_navigate: { url: "https://example.com/data" }
browser_evaluate: { 
  script: "() => { return Array.from(document.querySelectorAll('table tr')).map(r => r.textContent); }" 
}

### Screenshot

browser_navigate: { url: "https://example.com" }
browser_evaluate: { script: "() => { document.body.style.zoom = 1; return true; }" }
# Screenshot saved via --output-dir or returned in response

### Security Notes

By default restricts file system access to workspace root
Host validation prevents navigation to untrusted domains
Sandboxing enabled by default (use --no-sandbox with caution)
Service workers blocked by default

### Troubleshooting

# Update browsers
npx playwright install chromium

# Debug mode
npx @playwright/mcp --headless=false --output-mode=stdout

# Check installation
playwright-mcp --version

### Links

Playwright Docs
MCP Protocol
NPM Package
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: itsjustFred
- Version: 1.0.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-07T04:46:13.941Z
- Expires at: 2026-05-14T04:46:13.941Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/playwright-mcp-1-0-0)
- [Send to Agent page](https://openagent3.xyz/skills/playwright-mcp-1-0-0/agent)
- [JSON manifest](https://openagent3.xyz/skills/playwright-mcp-1-0-0/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/playwright-mcp-1-0-0/agent.md)
- [Download page](https://openagent3.xyz/downloads/playwright-mcp-1-0-0)