Skip to content
VS Code

accessibility scanner mcp for VS Code

io.github.bishop81/accessibility-scanner-mcp

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

client:VS Code transport:stdio runtime:npm

Install accessibility scanner mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "chrome-path",
      "description": "CHROME_PATH",
      "password": true
    }
  ],
  "servers": {
    "accessibility-scanner-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "accessibility-scanner-mcp"
      ],
      "env": {
        "CHROME_PATH": "${input:chrome-path}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

accessibility scanner mcp in other clients