audit_url
Audit a web page for WCAG accessibility issues by running axe-core checks at A, AA, or AAA conformance levels. Returns violations grouped by impact with CSS selectors and help URLs.
Instructions
Run an axe-core accessibility audit on a web page at a specified WCAG conformance level. Default audits A + AA rules (cumulative). Returns violations grouped by impact with WCAG criteria, CSS selectors, and help URLs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | HTTP or HTTPS URL to audit | |
| delta | No | If true with level aaa, show only AAA-specific violations (the gap from AA to AAA) | |
| level | No | WCAG conformance level — aa (default) audits A + AA rules; aaa audits A + AA + AAA | |
| rules | No | Run only these specific axe-core rule IDs (e.g., ["color-contrast", "image-alt"]) | |
| waitFor | No | CSS selector to wait for before auditing (for SPAs) | |
| viewport | No | Viewport emulation (default: desktop) | |
| directory | No | Save full JSON results to this directory | |
| maxViolations | No | Top N violations per impact group (default 10, max 15) | |
| includeIncomplete | No | Include needs-review results in addition to violations |