MCP server
by priyankark
Quickly test website accessibility and fix issues using A11y, an advanced web accessibility checker powered by axe-core
Performs accessibility audits on webpages using axe-core and provides detailed results that AI assistants can use to fix accessibility issues.
A11y is a community-built MCP server published by priyankark that provides AI assistants with tools and capabilities via the Model Context Protocol. Quickly test website accessibility and fix issues using A11y, an advanced web accessibility checker powered by axe-core It is categorized under developer tools. This server exposes 2 tools that AI clients can invoke during conversations and coding sessions.
You can install A11y in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MPL-2.0
A11y is released under the MPL-2.0 license.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
According to our notes, A11y benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
A11y has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
I recommend A11y for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
A11y is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
A11y has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Strong directory entry: A11y surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We wired A11y into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
A11y is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated A11y against two servers with overlapping tools; this profile had the clearer scope statement.
We wired A11y into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
showing 1-10 of 73
An MCP (Model Context Protocol) server for performing accessibility audits on webpages using axe-core. Use the results in an agentic loop with your favorite AI assistants (Cline/Cursor/GH Copilot) and let them fix a11y issues for you!
<a href="https://glama.ai/mcp/servers/@priyankark/a11y-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@priyankark/a11y-mcp/badge" alt="a11y-mcp MCP server" /> </a># Install globally
npm install -g a11y-mcp
# Or use directly with npx
npx a11y-mcp
To use this MCP server with Cline, you need to add it to your MCP settings configuration file.
Add the following to the mcpServers object:
{
"mcpServers": {
"a11y": {
"command": "npx",
"args": ["a11y-mcp"],
"disabled": false,
"autoApprove": []
}
}
}
Performs a detailed accessibility audit on a webpage.
Parameters:
url (required): URL of the webpage to auditincludeHtml (optional): Whether to include HTML snippets in the results (default: false)tags (optional): Array of specific accessibility tags to check (e.g., wcag2a, wcag2aa, wcag21a, best-practice)Example:
Use the a11y MCP server to audit example.com for accessibility issues
Gets a summary of accessibility issues for a webpage.
Parameters:
url (required): URL of the webpage to auditExample:
Give me an accessibility summary of example.com
Once configured, you can ask Claude to use the MCP server to perform accessibility audits:
To run the server locally for development:
npm start
This project includes a release script to help with versioning and publishing to npm. The script handles version bumping, running tests, git tagging, and npm publishing.
To release a new version:
# Make sure the script is executable
chmod +x release.sh
# Release a patch version (default)
./release.sh
# Release a minor version
./release.sh --minor
# Release a major version
./release.sh --major
# Release a specific version
./release.sh --version=1.2.3
# Skip git operations
./release.sh --skip-git
# Dry run (no changes will be made)
./release.sh --dry-run
# Force release even with uncommitted changes
./release.sh --force
For more information, run:
./release.sh --help
MPL 2.0
This project builds atop the awesome work done by axe-core
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.