Skip to content
LangChain

SyteCheck for LangChain

com.sytecheck/sytecheck-mcp

Scan a website for SEO, accessibility, performance and security issues, and read the report.

client:LangChain transport:stdio runtime:npm

Install SyteCheck in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "sytecheck-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@ascentws/sytecheck-mcp"],
        }
})

tools = await client.get_tools()

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

SyteCheck in other clients