Skip to content
LangChain

screenshot for LangChain

com.apiscreenshot/screenshot

Screenshot any URL/HTML as PNG/JPEG/WebP, or read it as clean Markdown/text for LLMs.

client:LangChain transport:streamable-http

Install screenshot in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "screenshot": {
            "transport": "streamable_http",
            "url": "https://apiscreenshot.com/mcp",
        }
})

tools = await client.get_tools()

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

screenshot in other clients