Model Context Protocol (MCP)
Bring Aulys into your AI workflow. Connect our MCP Server to clients like Claude Desktop or Cursor to give your AI assistants the ability to trigger accessibility scans and read compliance reports autonomously.
What is MCP?
The Model Context Protocol is an open standard that enables models to interact with local and remote data sources. By installing the Aulys MCP Server, you are equipping the AI with "tools" it can call.
Available Tools
execute_scan: Triggers a scan on a given URLget_scan_results: Retrieves specific violationsgenerate_remediation_code: Asks the AI to rewrite a DOM node to be WCAG compliant
Using with Claude Desktop
To install the Aulys server in Claude Desktop, append the following configuration to your claude_desktop_config.json:
{
"mcpServers": {
"aulys": {
"command": "npx",
"args": [
"-y",
"@aulys/mcp-server"
],
"env": {
"AULYS_API_KEY": "YOUR_API_KEY"
}
}
}
}You must retrieve an API Key from your Aulys Dashboard to authenticate the MCP commands.
Example Prompt
"Hey Claude, run an Aulys accessibility scan on https://my-staging-site.com. For every critical violation it finds, look at my local React codebase, find the offending component, and write a patch to fix it."