validate_performance_gtmetrix
Analyze website performance using GTmetrix API to test page speed, identify optimization opportunities, and measure loading metrics for web pages.
Instructions
Analyze website performance using GTmetrix. Requires API key (free tier available).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | Yes | GTmetrix API key (required) | |
browser | No | Browser type (e.g., chrome) | |
location | No | Test location (e.g., vancouver-canada) | |
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "GTmetrix API key (required)",
"type": "string"
},
"browser": {
"description": "Browser type (e.g., chrome)",
"type": "string"
},
"location": {
"description": "Test location (e.g., vancouver-canada)",
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"url",
"apiKey"
],
"type": "object"
}