playwright_get
Execute HTTP GET requests directly within a browser automation workflow using Playwright, enabling automated retrieval of web content from specified URLs via MCP Browser Automation Server.
Instructions
Perform an HTTP GET request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to perform GET operation |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to perform GET operation",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}