visit_page
Extract webpage content and capture screenshots by visiting URLs, enabling real-time web research directly within conversations using the MCP Web Research Server.
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"
}