webpage_scrape
Extract and retrieve webpage content by URL, optionally converting it to Markdown format, enabling LLMs to access and process web-based information.
Instructions
Scrape webpage by url
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeMarkdown | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"includeMarkdown": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": false,
"title": "Includemarkdown"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "WebpageRequest",
"type": "object"
}