Skip to content
LangChain

accessproof for LangChain

com.edgethirteen.www/accessproof

Scan a web page's markup for the WCAG failures ADA demand letters cite most often.

client:LangChain transport:streamable-http

Install accessproof in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "accessproof": {
            "transport": "streamable_http",
            "url": "https://www.edgethirteen.com/api/mcp/accessproof",
        }
})

tools = await client.get_tools()

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

accessproof in other clients