# Accessibility Scanner Mcp

> Scan any URL for WCAG accessibility issues (axe-core) and get per-element fixes for an AI agent.

- **Type:** MCP server
- **Install:** `agentstack add mcp-bishop81-accessibility-scanner-mcp`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [Bishop81](https://agentstack.voostack.com/s/bishop81)
- **Installs:** 0
- **Category:** [Integrations](https://agentstack.voostack.com/c/integrations)
- **Latest version:** 0.1.2
- **License:** MIT
- **Upstream author:** [Bishop81](https://github.com/Bishop81)
- **Source:** https://github.com/Bishop81/accessibility-scanner-mcp
- **Website:** https://accessibilityscanner.app

## Install

```sh
agentstack add mcp-bishop81-accessibility-scanner-mcp
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# accessibility-scanner-mcp

An [MCP](https://modelcontextprotocol.io) server that lets an AI agent scan a web page for
**WCAG accessibility issues** and get back findings it can act on. The agent calls one tool with a
URL; it gets every violation grouped by severity, each with the **exact element selector, the
offending HTML, the specific failure, the WCAG success criterion, and a fix-guide link** — plus the
items that still need human review.

It runs the real [axe-core](https://github.com/dequelabs/axe-core) engine in your **local Chrome**
(via `playwright-core`), so nothing about the pages you scan leaves your machine. It also resolves
color contrast over CSS gradients, which most tools leave as "needs review."

Part of [accessibilityscanner.app](https://accessibilityscanner.app).

## Requirements

- Node.js 18+
- Google Chrome installed (or set the `CHROME_PATH` environment variable to a Chromium binary)

## Install

Add it to your MCP client's config. No global install needed — `npx` fetches it on first run.

**Claude Desktop** (`claude_desktop_config.json`), **Cursor**, **Claude Code**, or any MCP client:

```json
{
  "mcpServers": {
    "accessibility-scanner": {
      "command": "npx",
      "args": ["-y", "accessibility-scanner-mcp"]
    }
  }
}
```

If Chrome is not auto-detected, add an env block:

```json
{
  "mcpServers": {
    "accessibility-scanner": {
      "command": "npx",
      "args": ["-y", "accessibility-scanner-mcp"],
      "env": { "CHROME_PATH": "/usr/bin/google-chrome" }
    }
  }
}
```

## The tool

### `scan_accessibility`

| Input | |
|---|---|
| `url` (string, required) | The http(s) URL to scan. |

Returns a report grouped by severity. For each rule: the WCAG criterion, a fix-guide link, and per
element the selector, HTML, and exact failure. Example flow with an agent:

> **You:** Audit https://example.com for accessibility and fix what you can.
> **Agent:** *(calls `scan_accessibility`)* → reads the findings → edits the code → re-scans.

## Honest about limits

Automated testing covers the machine-checkable subset of WCAG (most of the issues on a typical
page, but not all of it). Items that need human judgement are returned under "Needs manual review."
It never claims a page is "compliant."

## License

MIT

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [Bishop81](https://github.com/Bishop81)
- **Source:** [Bishop81/accessibility-scanner-mcp](https://github.com/Bishop81/accessibility-scanner-mcp)
- **License:** MIT
- **Homepage:** https://accessibilityscanner.app

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.2 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.2** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-bishop81-accessibility-scanner-mcp
- Seller: https://agentstack.voostack.com/s/bishop81
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
