What problem does it solve? Web accessibility issues like missing ARIA labels, broken keyboard navigation, and low color contrast are hard to detect without specialized tooling, leaving sites unusable for assistive technology users. ## Core Features & Use Cases - Accessibility Tree Inspection: Uses Chrome DevTools MCP take_snapshot to analyze semantic structure, heading hierarchy, and accessible names as assistive technologies perceive them. - Automated Issue Detection: Reads native Chrome accessibility audits via list_console_messages to surface missing labels, invalid ARIA attributes, and low contrast warnings. - Interactive Testing Scripts: Provides evaluate_script snippets to detect orphaned form inputs, measure tap target sizes, compute color contrast ratios, and verify global page settings like lang and viewport. - Use Case: A developer building a modal dialog can tab through the page with press_key, capture snapshots to verify focus trapping, and confirm all form fields have associated labels before release. ## Quick Start Audit this page for accessibility issues using the a11y-debugging skill and report any missing labels, contrast problems, or keyboard navigation failures.