get_url_content_direct
Fetch webpage content and metadata directly from any URL using HTTP requests. This tool retrieves full page content for analysis or processing without requiring browser interaction.
Instructions
Get webpage content directly using HTTP request
Args:
url (str): The URL to fetch content from
Returns:
str: The webpage content and metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}