visit_page
Extract webpage content and optionally capture screenshots using a web research server. Ideal for retrieving and analyzing online information efficiently.
Instructions
Visit a webpage and extract its content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
takeScreenshot | No | Whether to take a screenshot | |
url | Yes | URL to visit |
Input Schema (JSON Schema)
{
"properties": {
"takeScreenshot": {
"description": "Whether to take a screenshot",
"type": "boolean"
},
"url": {
"description": "URL to visit",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}