Skip to content
LangChain

Website Change Monitor for LangChain

dev.blyck/website-change-monitor

Monitor public pages and JSON endpoints after agents disconnect, with polling and webhooks.

client:LangChain transport:streamable-http

Install Website Change Monitor in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "website-change-monitor": {
            "transport": "streamable_http",
            "url": "https://blyck--website-change-monitor.apify.actor/mcp",
        }
})

tools = await client.get_tools()

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

Website Change Monitor in other clients