Crawlberg for LangChain
io.github.xberg-io/crawlberg
Scrape, crawl, and map websites to Markdown or JSON via local CLI.
client:LangChain
transport:stdio
runtime:oci
Install Crawlberg in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"crawlberg": {
"transport": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/xberg-io/crawlberg:1.7.2"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs