Playwright Accessibility Server
FreeNot checkedEnables accessibility testing using Playwright and Axe, allowing users to scan URLs, HTML content, and batches for violations, and summarize results.
About
Enables accessibility testing using Playwright and Axe, allowing users to scan URLs, HTML content, and batches for violations, and summarize results.
README
This project is an implementation of a Model Context Protocol (MCP) server for accessibility testing using Playwright and Axe. It provides tools to scan URLs, raw HTML, and batches of URLs for accessibility violations and summarize the results.
[!TIP] The simplest way to get started is to use the one-line installation:
npx playwright-accessibility-mcp-server. This will automatically download and run the latest version without having to manually install the package.
Features
- scan-url: Scans a single URL for accessibility violations.
- scan-html: Scans raw HTML content for accessibility violations.
- scan-batch: Scans multiple URLs for accessibility violations.
- summarize-violations: Summarizes accessibility violations from Axe results.
- write-violations-report: Writes accessibility violations report to the output directory.
Requirements
- Node.js 18 or newer
- VS Code, Cursor, Windsurf, Claude Desktop or any other MCP client
Getting started
First, install the Playwright Accessibility MCP server with your client. A typical configuration looks like this:
{
"mcpServers": {
"playwright-accessibility": {
"command": "npx",
"args": [
"playwright-accessibility-mcp-server@latest"
]
}
}
}
Install in VS Code
You can also install the Playwright Accessibility MCP server using the VS Code CLI:
# For VS Code
code --add-mcp '{"name":"playwright-accessibility","command":"npx","args":["playwright-accessibility-mcp-server@latest"]}'
After installation, the Playwright Accessibility MCP server will be available for use with your GitHub Copilot agent in VS Code.
Install in Cursor
Go to Cursor Settings -> MCP -> Add new MCP Server. Name to your liking, use command type with the command npx playwright-accessibility-mcp-server. You can also verify config or add command like arguments via clicking Edit.
{
"mcpServers": {
"playwright-accessibility": {
"command": "npx",
"args": [
"playwright-accessibility-mcp-server@latest"
]
}
}
}
Install in Windsurf
Follow Windsuff MCP documentation. Use following configuration:
{
"mcpServers": {
"playwright-accessibility": {
"command": "npx",
"args": [
"playwright-accessibility-mcp-server@latest"
]
}
}
}
Install in Claude Desktop
Follow the MCP install guide, use following configuration:
{
"mcpServers": {
"playwright-accessibility": {
"command": "npx",
"args": [
"playwright-accessibility-mcp-server@latest"
]
}
}
}
𝗪𝗵𝘆 𝗔𝗰𝗰𝗲𝘀𝘀𝗶𝗯𝗶𝗹𝗶𝘁𝘆 𝗧𝗲𝘀𝘁𝗶𝗻𝗴 𝗠𝗮𝘁𝘁𝗲𝗿𝘀:
Accessibility testing ensures that digital content is usable by people with disabilities. It promotes inclusivity and compliance with standards like WCAG. By integrating accessibility testing into your workflow, you can create a better user experience for everyone. 🌍
𝗪𝗵𝘆 𝗣𝗹𝗮𝘆𝘄𝗿𝗶𝗴𝗵𝘁 𝗔𝗰𝗰𝗲𝘀𝘀𝗶𝗯𝗶𝗹𝗶𝘁𝘆 𝗠𝗮𝘁𝘁𝗲𝗿𝘀:
Accessibility testing ensures that digital content is usable by people with disabilities. It promotes inclusivity and compliance with standards like WCAG. By integrating Playwright accessibility testing into your workflow, you can:
- 📌𝗘𝗻𝗵𝗮𝗻𝗰𝗲 𝗨𝘀𝗲𝗿 𝗘𝘅𝗽𝗲𝗿𝗶𝗲𝗻𝗰𝗲: Make your applications usable for everyone, including people with disabilities.
- 📌𝗘𝗻𝘀𝘂𝗿𝗲 𝗖𝗼𝗺𝗽𝗹𝗶𝗮𝗻𝗰𝗲: Meet legal and regulatory requirements for accessibility.
- 📌𝗣𝗿𝗼𝗺𝗼𝘁𝗲 𝗜𝗻𝗰𝗹𝘂𝘀𝗶𝘃𝗶𝘁𝘆: Foster an inclusive digital environment where everyone can access and benefit from your content.
Installation
Clone the repository:
git clone https://github.com/deepakkamboj/playwright-accessibility-mcp-server.git cd playwright-accessibility-mcp-serverInstall dependencies:
npm installBuild the project:
npm run build
🔧 Usage
Starting the Server
Start the server:
npm startUse the tools via the MCP protocol to perform accessibility testing.
Using as an MCP Server
This project implements the MCP protocol, allowing you to interact with the server using MCP-compatible clients. Below are the steps to use it as an MCP server:
Start the MCP Server: Ensure the server is running by executing:
npm startConnect to the Server: Use an MCP client to connect to the server. The default server runs on
http://localhost:3000.Send MCP Requests: Use the following tools via MCP requests:
scan-url: Analyze a single URL for accessibility violations.scan-html: Analyze raw HTML content for accessibility violations.scan-batch: Analyze multiple URLs for accessibility violations.summarize-violations: Summarize accessibility violations from Axe results.write-violations-report: Write accessibility violations report to the output directory.
Example MCP Request: Below is an example of an MCP request to write a violations report:
{ "tool": "write-violations-report", "input": { "violations": [ { "id": "color-contrast", "impact": "serious", "description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds.", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/color-contrast", "nodes": [ { "target": ["#example"], "failureSummary": "Fix this element's color contrast.", "html": "<div id='example' style='color: #fff; background-color: #fff;'>Example</div>" } ] } ] } }Send this request to the server using an MCP client, and the server will write the violations report to the output directory.
MCP (JSON‑RPC) Mode
For AI clients (e.g. Claude Desktop, Cursor, VS Code MCP extension), configure your <client>_config.json:
{
"mcpServers": {
"playwright-accessibility-mcp-server": {
"command": "node",
"args": ["${AbsolutePath}/build/index.js"]
}
}
}
Once the MCP server is running, you can invoke tools like:
scan-url(params:{ "url": "https://google.com" })scan-html(params:{ "html": "<h1>Hello</h1>" })scan-batch(params:{ "urls": ["https://a.com","https://b.com"] })summarize-violations(params:{ "result": <axe result> })
MCP Local Dev Mode
For local development, configure your <client>_config.json as follows:
{
"mcpServers": {
"playwright-accessibility-mcp-server": {
"command": "node",
"args": ["${AbsolutePath}/build/index.js"]
}
}
}
Development
To run the server in development mode:
npm run devTo test the tools, export the server and use the MCP SDK.
🤝 Contributing
- Fork the repo.
- Create a branch (
git checkout -b feature/xyz). - Commit your changes.
- Open a Pull Request (PR).
License
This project is licensed under the MIT License.
from github.com/deepakkamboj/playwright-accessibility-mcp-server
Install Playwright Accessibility Server in Claude Desktop, Claude Code & Cursor
unyly install playwright-accessibility-mcp-serverInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add playwright-accessibility-mcp-server -- npx -y playwright-accessibility-mcp-serverFAQ
Is Playwright Accessibility Server MCP free?
Yes, Playwright Accessibility Server MCP is free — one-click install via Unyly at no cost.
Does Playwright Accessibility Server need an API key?
No, Playwright Accessibility Server runs without API keys or environment variables.
Is Playwright Accessibility Server hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Playwright Accessibility Server in Claude Desktop, Claude Code or Cursor?
Open Playwright Accessibility Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Playwright
Browser automation, scraping, screenshots
by MicrosoftPuppeteer
Browser automation and web scraping.
by modelcontextprotocolopentabs-dev/opentabs
Plugin-based MCP server + Chrome extension that gives AI agents access to web applications through the user's authenticated browser session. 100+ plugins with a
by opentabs-devrobhunter/agentdeals
1,500+ developer infrastructure deals, free tiers, and startup programs across 54 categories. Search deals, compare vendors, plan stacks, and track pricing chan
by robhunterCompare Playwright Accessibility Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All browse MCPs
