manoj9788
MCP Servermanoj9788public

mcp axe

mcp-axe is a MCP-compatible plugin for automated accessibility scanning

Repository Info

7
Stars
1
Forks
7
Watchers
0
Issues
Python
Language
MIT License
License

About This Server

mcp-axe is a MCP-compatible plugin for automated accessibility scanning

Model Context Protocol (MCP) - This server can be integrated with AI applications to provide additional context and capabilities, enabling enhanced AI interactions and functionality.

Documentation

mcp‑axe

PyPI version License


A Model Context Protocol (MCP) plugin for automated accessibility testing using axe-core. It lets MCP‑aware clients (Claude Desktop, Cursor, etc.) or your terminal run:

  • Single URL scans
  • HTML string scans
  • Batch URL scans
  • Violation summarisation

All powered by Selenium under the hood.

📦 Installation

From PyPI

pip install mcp-axe

Requires Python 3.8+.

Local / Development

git clone https://github.com/manoj9788/mcp-axe.git
cd mcp-axe
python3 -m venv .venv && source .venv/bin/activate
pip install -e .[dev]

🔧 Usage

MCP (JSON‑RPC) mode

For AI clients (e.g. Claude Desktop, Cursor, VS Code MCP extension), configure your <client>_config.json:

{
  "mcpServers": {
    "axe-a11y": {
      "command": "python3",
      "args": ["-m", "mcp_axe"],
      "cwd": "."
    }
  }
}

Or

   "axe-a11y": {
      "command": "uvx",
      "args": [
        "mcp-axe"
      ]
    }

Once the MCP server is running,

you can prompt like scan https://manojkk.com for accessibility issues will invoke the scan-url tool.

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"] })
  • summarise-violations (params: { "result": <axe result> })

MCP local dev mode

{
  "mcpServers": {
    "axe-a11y": {
      "command": "/path/to/.venv/bin/python",
      "args": ["-m", "mcp_axe"],
      "cwd": "/path/to/mcp-axe"
    }
  }
}

FastAPI REST mode (optional)

Expose HTTP endpoints via:

from mcp_axe.server import app  # FastAPI instance
import uvicorn

if __name__ == '__main__':
    uvicorn.run(app, host='0.0.0.0', port=9788, reload=True)

Then:

curl -X POST http://localhost:9788/scan/url -H 'Content-Type: application/json' \
  -d '{ "url": "https://google.com" }'

🤝 Contributing

  1. Fork the repo
  2. Create a branch (git checkout -b feature/xyz)
  3. Commit your changes
  4. Open a PR

📜 License

MIT

Quick Start

1

Clone the repository

git clone https://github.com/manoj9788/mcp-axe
2

Install dependencies

cd mcp-axe
npm install
3

Follow the documentation

Check the repository's README.md file for specific installation and usage instructions.

Repository Details

Ownermanoj9788
Repomcp-axe
LanguagePython
LicenseMIT License
Last fetched8/10/2025

Recommended MCP Servers

💬

Discord MCP

Enable AI assistants to seamlessly interact with Discord servers, channels, and messages.

integrationsdiscordchat
🔗

Knit MCP

Connect AI agents to 200+ SaaS applications and automate workflows.

integrationsautomationsaas
🕷️

Apify MCP Server

Deploy and interact with Apify actors for web scraping and data extraction.

apifycrawlerdata
🌐

BrowserStack MCP

BrowserStack MCP Server for automated testing across multiple browsers.

testingqabrowsers

Zapier MCP

A Zapier server that provides automation capabilities for various apps.

zapierautomation