validate_all_accessibility
Run comprehensive accessibility tests using Axe and optional WAVE integration to identify WCAG compliance issues and improve website accessibility for all users.
Instructions
Run all accessibility tests (Axe + optionally WAVE if API key provided).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | ||
waveApiKey | No | Optional WAVE API key | |
wcagLevel | No | WCAG level for Axe |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"type": "string"
},
"waveApiKey": {
"description": "Optional WAVE API key",
"type": "string"
},
"wcagLevel": {
"description": "WCAG level for Axe",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}