Skip to content
LangChain

WyndPath Web Data for LangChain

com.wyndpath/web-data-extraction

Fetch and extract data from any public web page, even JS-rendered or anti-bot protected

client:LangChain transport:streamable-http

Install WyndPath Web Data in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "web-data-extraction": {
            "transport": "streamable_http",
            "url": "https://mcp.wyndpath.com/mcp",
        }
})

tools = await client.get_tools()

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

WyndPath Web Data in other clients