playwright_custom_user_agent
Set a custom User Agent for browser automation within the Playwright MCP Server, enabling tailored web interactions for scraping, testing, or simulating specific devices.
Instructions
Set a custom User Agent for the browser
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userAgent | Yes | Custom User Agent for the Playwright browser instance |
Input Schema (JSON Schema)
{
"properties": {
"userAgent": {
"description": "Custom User Agent for the Playwright browser instance",
"type": "string"
}
},
"required": [
"userAgent"
],
"type": "object"
}