fetch_page_links
Extract all links from a specified webpage to analyze or navigate its content. Input a URL, and the tool retrieves a list of all hyperlinks found on the page for further processing or research.
Instructions
Return a list of all links on the page.
Args: url: The URL to fetch links from
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "fetch_page_linksArguments",
"type": "object"
}