validate_comprehensive
Run comprehensive website validation across performance, accessibility, SEO, and security categories to identify issues and ensure compliance with web standards.
Instructions
Run comprehensive validation across all categories (performance, accessibility, SEO, security).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categories | No | Categories to test (default: all) | |
Yes | Email for SSL Labs (required) | ||
gtmetrixApiKey | No | ||
pagespeedApiKey | No | ||
url | Yes | ||
waitForSSL | No | ||
waveApiKey | No | ||
wcagLevel | No |
Input Schema (JSON Schema)
{
"properties": {
"categories": {
"description": "Categories to test (default: all)",
"items": {
"enum": [
"performance",
"accessibility",
"seo",
"security"
],
"type": "string"
},
"type": "array"
},
"email": {
"description": "Email for SSL Labs (required)",
"type": "string"
},
"gtmetrixApiKey": {
"type": "string"
},
"pagespeedApiKey": {
"type": "string"
},
"url": {
"type": "string"
},
"waitForSSL": {
"type": "boolean"
},
"waveApiKey": {
"type": "string"
},
"wcagLevel": {
"type": "string"
}
},
"required": [
"url",
"email"
],
"type": "object"
}