a11y-mcp-server
Exposes axe-core accessibility auditing as MCP tools so any MCP-compatible agent can audit HTML for structural and semantic issues.
README
a11y-mcp-server
An MCP server that exposes axe-core accessibility auditing as tools — so any MCP-compatible agent (Claude Desktop, Claude Code, or any other MCP client) can audit HTML without a project-specific integration.
This grew out of agentic-design-tools's
a11y-review Claude Code skill: the skill is Claude Code-specific, this is the same auditing capability
as a standard protocol server any agent can call.
Tools
| Tool | Description |
|---|---|
audit_html |
Audit an inline HTML string |
audit_file |
Audit a local .html file by path |
audit_url |
Fetch a URL and audit the raw (server-rendered) response HTML |
Each accepts an optional tags array to restrict which axe-core rule tags run, e.g. ["wcag2a", "wcag2aa"].
Scope note: audits run via jsdom, which has no real layout engine. That
reliably catches structural/semantic issues — missing alt text, unlabeled form inputs, missing
lang/<title>, empty link text, and similar — but rules that depend on rendered geometry or computed
color (color-contrast, focus-order checks) won't reliably fire. For full WCAG coverage, run axe-core in a
real browser (Playwright/Puppeteer) against the rendered page.
Security note: audit_html and audit_url execute any <script> in the input inside a sandboxed jsdom
window (no Node.js API access). Only audit HTML/URLs you trust.
Install & configure
npm install -g @aiuxmasters/a11y-mcp-server
Add to your MCP client config (e.g. Claude Desktop's claude_desktop_config.json):
{
"mcpServers": {
"a11y": {
"command": "npx",
"args": ["-y", "@aiuxmasters/a11y-mcp-server"]
}
}
}
Programmatic API
import { auditHtml } from "@aiuxmasters/a11y-mcp-server";
const result = await auditHtml("<img src='logo.png'>");
console.log(result.violations); // [{ id: "image-alt", impact: "critical", ... }]
Development
npm install
npm test # unit tests + a real end-to-end MCP client/server round trip over InMemoryTransport
npm run build
License
MIT — see LICENSE.
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.
E2B
Using MCP to run code via e2b.
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.