get_page_info
Extract web page metadata, title, and performance metrics from any URL using specified browser engines for analysis and testing purposes.
Instructions
Get comprehensive information about a web page (title, meta tags, performance metrics)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
browser | No | Browser engine to use | chromium |
includePerformance | No | Include performance metrics | |
url | Yes | URL to analyze |
Input Schema (JSON Schema)
{
"properties": {
"browser": {
"default": "chromium",
"description": "Browser engine to use",
"enum": [
"chromium",
"firefox",
"webkit"
],
"type": "string"
},
"includePerformance": {
"default": false,
"description": "Include performance metrics",
"type": "boolean"
},
"url": {
"description": "URL to analyze",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}