Skip to content
LangChain

unblink for LangChain

io.github.christopherdavenport/unblink

Pure-Go browser for AI: fetch pages, render JS without Chromium, return clean Markdown over MCP.

client:LangChain transport:stdio runtime:oci

Install unblink in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "unblink": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/christopherdavenport/unblink:0.24.0"],
        }
})

tools = await client.get_tools()

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

unblink in other clients