check_page_links
Check all links on a web page for broken links, returning HTTP status codes and failure reasons. Supports filtering external links and respecting robots.txt exclusions.
Instructions
Check all links on a single HTML page for broken links. Returns detailed information about each link found including broken status, HTTP status codes, and reasons for failure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
excludeExternalLinks | No | If true, only check internal links (default: false) | |
honorRobotExclusions | No | If true, respect robots.txt and meta robots tags (default: true) | |
url | Yes | The URL of the page to check for broken links |
Input Schema (JSON Schema)
{
"properties": {
"excludeExternalLinks": {
"default": false,
"description": "If true, only check internal links (default: false)",
"type": "boolean"
},
"honorRobotExclusions": {
"default": true,
"description": "If true, respect robots.txt and meta robots tags (default: true)",
"type": "boolean"
},
"url": {
"description": "The URL of the page to check for broken links",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}