get_performance_score
Analyze and retrieve the performance score of a webpage by providing its URL and device type, helping identify optimization areas using Google's Lighthouse metrics.
Instructions
Get just the performance score for a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device | No | Device to emulate (defaults to mobile) | |
url | Yes | URL to audit |
Input Schema (JSON Schema)
{
"properties": {
"device": {
"description": "Device to emulate (defaults to mobile)",
"enum": [
"mobile",
"desktop"
],
"type": "string"
},
"url": {
"description": "URL to audit",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}