validate_accessibility_axe
Analyze website accessibility using Axe to identify WCAG compliance issues with zero false positives, helping developers improve web accessibility.
Instructions
Analyze website accessibility using Axe. Free, open-source, finds ~57% of WCAG issues with zero false positives.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | ||
wcagLevel | No | WCAG level (wcag2a, wcag2aa, wcag2aaa, wcag21aa, wcag22aa) |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"type": "string"
},
"wcagLevel": {
"description": "WCAG level (wcag2a, wcag2aa, wcag2aaa, wcag21aa, wcag22aa)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}