Skip to content
LangChain

wcagc — accessibility scanning for LangChain

io.github.wcag-compliance/mcp

Deterministic axe-core accessibility scans (WCAG 2.1 AA, EN 301 549, PDF/UA) via your account.

client:LangChain transport:streamable-http runtime:npm

Install wcagc — accessibility scanning in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.wcagc.com/mcp",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

wcagc — accessibility scanning in other clients