get_page_links
Extract all links from a webpage using the MCP Web Browser Server. Retrieve a list of URLs for navigation, analysis, or content scraping via API integration.
Instructions
Extract all links from the current page.
Args:
context: Optional context object for logging (ignored)
Returns:
List of links found on the page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"anyOf": [
{},
{
"type": "null"
}
],
"default": null,
"title": "Context"
}
},
"title": "get_page_linksArguments",
"type": "object"
}