read_webpage
Extract text content from any webpage by providing its URL, enabling users to access and process web information without manual browsing.
Instructions
Fetch and extract text content from a webpage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL of the webpage to read |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL of the webpage to read",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}