WCAG MCP Server
Provides comprehensive access to WCAG 2.2 accessibility guidelines, including all 87 success criteria with full Understanding documentation, 400+ techniques, glossary terms, and ACT test rules from official W3C data.
README
wcag-mcp
WCAG MCP Server for Agentic Systems - Powered by Official W3C Data with Full Understanding Documentation
A Model Context Protocol (MCP) server providing comprehensive access to WCAG 2.2 guidelines, techniques, glossary terms, and complete Understanding documentation for every success criterion. Works both locally (stdio) and remotely (Netlify Functions).
Quick Start
Add to your MCP client configuration:
{
"mcpServers": {
"wcag": {
"command": "npx",
"args": ["-y", "wcag-guidelines-mcp"]
}
}
}
That's it! No cloning, no building - just add the config and start querying WCAG.
Features
- Complete WCAG 2.2 Coverage - All 87 success criteria with full details
- Full Understanding Documentation - Intent, benefits, examples, and resources for every SC
- Techniques Library - 400+ techniques (sufficient, advisory, failure patterns)
- Glossary - 101 official WCAG term definitions
- Version Tracking - See what's new in WCAG 2.2
What's New: Understanding Documentation
This server now includes complete Understanding documentation parsed from the official W3C WCAG Understanding documents. For every success criterion, you get:
- Brief Summary - Goal, what to do, and why it's important
- Intent - Detailed explanation of the purpose and rationale
- Benefits - Who benefits and how
- Examples - Real-world examples of implementation
- Resources - Curated list of tools and references
No more following external links - everything you need is right in the MCP response!
Available Tools (20 total)
Features
- Complete WCAG 2.2 Coverage - All 87 success criteria with full details
- Full Understanding Documentation - Intent, benefits, examples, and resources for every SC
- Techniques Library - 400+ techniques (sufficient, advisory, failure patterns)
- ACT Test Rules - 87+ standardized accessibility test rules
- Glossary - 101 official WCAG term definitions
- Version Tracking - See what's new in WCAG 2.2
What's New: Understanding Documentation
This server now includes complete Understanding documentation parsed from the official W3C WCAG Understanding documents. For every success criterion, you get:
- Brief Summary - Goal, what to do, and why it's important
- Intent - Detailed explanation of the purpose and rationale
- Benefits - Who benefits and how
- Examples - Real-world examples of implementation
- Resources - Curated list of tools and references
No more following external links - everything you need is right in the MCP response!
Available Tools (20 total)
Core WCAG Tools
| Tool | Description |
|---|---|
list-principles |
Lists all four WCAG 2.2 principles (Perceivable, Operable, Understandable, Robust) |
list-guidelines |
Lists WCAG 2.2 guidelines, optionally filtered by principle number (1-4) |
list-success-criteria |
Lists success criteria with optional filters by level (A/AA/AAA), guideline, or principle |
get-success-criteria-detail |
Gets just the normative success criterion text and exceptions without Understanding docs |
get-criterion |
Gets comprehensive details including full Understanding documentation (intent, benefits, examples) |
get-guideline |
Gets full details for a specific guideline including all its success criteria |
search-wcag |
Searches success criteria by keyword in titles and descriptions |
get-criteria-by-level |
Gets all criteria for a conformance level, optionally including lower levels |
count-criteria |
Returns counts of success criteria grouped by level, principle, or guideline |
Technique Tools
| Tool | Description |
|---|---|
list-techniques |
Lists techniques, filter by technology (html, aria, css, pdf, general) or type |
get-technique |
Gets details for a specific technique by ID (e.g., "H37", "ARIA1", "G94") |
get-techniques-for-criterion |
Gets all techniques (sufficient, advisory, failure) for a success criterion |
search-techniques |
Searches techniques by keyword |
get-failures-for-criterion |
Gets failure patterns (common mistakes) for a success criterion |
Glossary Tools
| Tool | Description |
|---|---|
get-glossary-term |
Gets the definition of a WCAG term (e.g., "programmatically determined") |
list-glossary-terms |
Lists all 101 WCAG glossary terms |
search-glossary |
Searches the glossary by keyword |
Enhanced Context Tools
| Tool | Description |
|---|---|
whats-new-in-wcag22 |
Lists all 9 success criteria added in WCAG 2.2 |
get-full-criterion-context |
Gets comprehensive context: SC + techniques |
get-server-info |
Returns server information and statistics |
Data Source
This server uses official data from the W3C WCAG Repository:
- WCAG JSON: Published WCAG 2.2 JSON
- Understanding Docs: Parsed from official W3C Understanding HTML files in the submodule
Statistics
- 4 Principles - Perceivable, Operable, Understandable, Robust
- 13 Guidelines - Organized under principles
- 87 Success Criteria - Levels A (32), AA (24), AAA (31)
- 400+ Techniques - HTML, ARIA, CSS, PDF, General, and more
- 101 Glossary Terms - Official WCAG definitions
Installation
# Clone with submodules
git clone --recurse-submodules https://github.com/joe-watkins/wcag-mcp.git
cd wcag-mcp
# Install dependencies and build data (automatically fetches WCAG data and Understanding docs)
npm install
Updating WCAG Data
To pull the latest WCAG data and Understanding documentation:
# Update submodule, fetch latest data from W3C, and parse Understanding docs
npm run build
The build process:
- Updates the W3C WCAG git submodule to the latest version
- Fetches the latest WCAG 2.2 JSON data from W3C
- Parses all Understanding documentation from HTML files
This runs automatically during npm install.
Configure your IDE
Add this to your Claude Desktop MCP settings:
{
"mcpServers": {
"wcag-mcp": {
"command": "node",
"args": ["<path to installed mcp>/wcag-mcp/src/index.js"]
}
}
}
Deploy to Netlify
This project is configured to deploy as a Netlify Function.
Deploy via GitHub
- Push this repository to GitHub
- Connect it to Netlify via the Netlify dashboard
- Netlify will automatically build and deploy
Using the Remote Server
Once deployed, configure your Claude Desktop MCP settings to use the remote server:
{
"mcpServers": {
"wcag-mcp": {
"type": "stdio",
"command": "npx",
"args": ["mcp-remote@next", "https://your-site.netlify.app/mcp"]
}
}
}
Replace your-site.netlify.app with your actual Netlify URL.
Project Structure
wcag-mcp/
├── data/
│ ├── wcag/ # W3C WCAG submodule (includes Understanding docs)
│ │ └── understanding/ # Understanding HTML files by WCAG version
│ │ ├── 20/ # WCAG 2.0 Understanding docs
│ │ ├── 21/ # WCAG 2.1 Understanding docs
│ │ └── 22/ # WCAG 2.2 Understanding docs
│ └── wcag.json # Enhanced WCAG data with Understanding content
├── scripts/
│ ├── fetch-wcag-data.js # Fetch WCAG JSON from W3C
│ └── parse-understanding-docs.js # Parse Understanding HTML files
├── src/
│ ├── index.js # MCP server with stdio transport
│ ├── tools.js # Tool definitions (20 tools)
│ └── data-helpers.js # Data access utilities
├── netlify/
│ └── functions/api.js # Netlify Function handler
└── package.json
Attribution
WCAG data from the W3C WCAG Repository (W3C Document License).
This software includes material copied from or derived from Web Content Accessibility Guidelines (WCAG) 2.2 https://www.w3.org/TR/WCAG22/. Copyright © 2023 W3C® (MIT, ERCIM, Keio, Beihang).
License
MIT
Learn More
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
E2B
Using MCP to run code via e2b.