Accessibility expert MCP server — helps developers build accessible components with WAI-ARIA patterns, code review, and WCAG guidance.
Project description
A11y Expert MCP
An accessibility expert for your AI coding assistant. This MCP (Model Context Protocol) server gives AI tools like Claude, Cursor, and Windsurf real-time access to WAI-ARIA patterns, code review, contrast checking, and WCAG guidance — so the code they write is accessible from the start.
What's Inside
🔧 Tools
| Tool | What it does |
|---|---|
get_pattern |
Get the full WAI-ARIA implementation pattern for any UI component — roles, states, keyboard interaction, and code examples. |
review_code |
Paste HTML/JSX/TSX/Vue/Svelte code and get a list of accessibility issues with specific fixes and WCAG references. Detects 10+ anti-patterns including missing labels, click-on-divs, broken heading hierarchy, missing dialog roles, and more. |
list_patterns |
See all 33 component patterns available in the knowledge base. |
check_contrast |
Check any two hex colors against WCAG AA and AAA contrast requirements for both normal and large text. |
📚 Knowledge Base (33 Components)
Every pattern comes from the WAI-ARIA Authoring Practices and includes roles, states, properties, keyboard interaction, and code examples.
| Accordion | Alert | Alert Dialog | Breadcrumbs |
| Buttons | Carousel | Checkbox | Combobox |
| Dialog (Modal) | Disclosure | Feed | Grid |
| Headings | Image Labeling | Landmarks | Link |
| Listbox | Menu | Menu Button | Meter |
| Radio | Slider | Slider (Multi-thumb) | Spinbutton |
| Switch | Tables | Tabs | Toolbar |
| Tooltip | Treeview | Treegrid | Window Splitter |
| Accessibility (General) |
💬 Prompts
Pre-built workflows your AI assistant can use:
| Prompt | What it does |
|---|---|
audit-component |
Step-by-step accessibility audit — checks ARIA, keyboard, focus, contrast, headings, touch targets. Provide code + optional component type. |
make-accessible |
Rewrites inaccessible code into a fully accessible implementation with WAI-ARIA patterns and comments explaining every change. |
check-form-accessibility |
Form-specific audit — labels, required fields, error handling, fieldsets, autocomplete, tab order, and submit feedback. |
wcag-checklist |
Generates a WCAG 2.2 compliance checklist (AA or AAA) organized by principle, tailored to your page or component. |
aria-guide |
Complete ARIA implementation guide for a component — roles, attributes, keyboard table, focus management, screen reader script, and code example. |
📖 Resources
Browsable knowledge base for MCP clients:
a11y://patterns— Index of all 33 component patternsa11y://patterns/{component}— Full pattern detail for any component
Installation
Prerequisites
- Python 3.11+
- uv (recommended) or pip
Option 1: Run directly with uvx (no install needed)
uvx a11y-expert-mcp
Option 2: Install with pip
pip install a11y-expert-mcp
Then run:
a11y-expert-mcp
Option 3: Run from source
git clone https://github.com/Elizabeth1979/a11y-expert-mcp.git
cd a11y-expert-mcp
uv run a11y-expert-mcp
Configuration
Claude Desktop / Claude Code
Add to your MCP config (~/.claude/config.json or Claude Desktop settings):
{
"mcpServers": {
"a11y": {
"command": "uvx",
"args": ["a11y-expert-mcp"]
}
}
}
Or if running from source:
{
"mcpServers": {
"a11y": {
"command": "uv",
"args": ["run", "--project", "/path/to/a11y-expert-mcp", "a11y-expert-mcp"]
}
}
}
Cursor / Windsurf / Other MCP Clients
Use the same command and args — check your editor's MCP configuration docs for the exact config file location.
Usage Examples
Once connected, your AI assistant can:
Get an accessible pattern:
"How do I build an accessible tabs component?" → The assistant calls
get_pattern("tabs")and gets the full WAI-ARIA pattern with keyboard interaction and code.
Review code for issues:
"Check this modal for accessibility problems" → The assistant calls
review_code(code, component_type="modal")and gets specific issues with fixes.
Check color contrast:
"Does #666 on #fff pass WCAG?" → The assistant calls
check_contrast("#666", "#fff")and gets AA/AAA results for normal and large text.
Generate a WCAG checklist:
"Give me a WCAG AA checklist for my checkout page" → The assistant uses the
wcag-checklistprompt to generate a tailored compliance checklist.
How It Works
The server bundles 33 WAI-ARIA pattern documents as a knowledge base. When your AI assistant asks about a component, it gets the real specification — not hallucinated ARIA attributes. The review_code tool runs 10+ static checks for common anti-patterns (click handlers on divs, missing labels, broken heading hierarchy, positive tabindex, etc.) and cross-references relevant patterns.
No external API calls. No database. Everything runs locally.
Tech Stack
- MCP SDK (FastMCP)
- Python 3.11+
- WAI-ARIA Authoring Practices knowledge base (bundled markdown files)
License
MIT
Author
Elli (@Elizabeth1979)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file a11y_expert_mcp-0.1.0.tar.gz.
File metadata
- Download URL: a11y_expert_mcp-0.1.0.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2120e7af39e968337fea96344e8f4b15d2c53a8d64ed05d19c35de53dcab8373
|
|
| MD5 |
00996140847f5bc1f17054b1024da7bc
|
|
| BLAKE2b-256 |
acf2adebfebb283601ee4de78520a7e139e968f320839284cfc0c9fe873c7e6f
|
File details
Details for the file a11y_expert_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: a11y_expert_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bc9c9743df5d3996f4c797803679a95cecf77607c1ce667e85160950c333920
|
|
| MD5 |
c1000b1de6e40a60d68aa79aa46b6005
|
|
| BLAKE2b-256 |
e0a26ae0e9a7258bceef3581643809c0894eae5b822da21a9f7869196a9889f6
|