Skip to content
LangChain

Web Content Extract Mcp for LangChain

io.github.varvararatta/web_content_extract_mcp

Web Content Extract Mcp connects AI agents to real public APIs via MCP. Tools include

client:LangChain transport:streamable-http tools:5

Install Web Content Extract Mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "web_content_extract_mcp": {
            "transport": "streamable_http",
            "url": "https://web-content-extract-mcp.mcpize.run/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Web Content Extract Mcp in other clients