visit_page
Extract webpage content or capture a screenshot by providing a URL. Use this tool to gather real-time web data for research or analysis on 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"
}