Skip to content
LangChain

Robot Resources Scraper for LangChain

io.github.robot-resources/scraper

Token compression for web content — 70-80% reduction from HTML to clean markdown

client:LangChain transport:stdio runtime:npm

Install Robot Resources Scraper in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Robot Resources Scraper in other clients