Skip to content
LangChain

agent-web — URL to LLM-ready markdown: a polite, robots-respecting web page reader (free) for LangChain

io.github.foomworks/agent-web

URL to clean markdown for LLMs: a polite, robots.txt-respecting web reader. Free, no API key

client:LangChain transport:streamable-http tools:5

Install agent-web — URL to LLM-ready markdown: a polite, robots-respecting web page reader (free) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "agent-web": {
            "transport": "streamable_http",
            "url": "https://agent-web.foomworks.workers.dev/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

agent-web — URL to LLM-ready markdown: a polite, robots-respecting web page reader (free) in other clients