Skip to content
LangChain

shotbot mcp for LangChain

net.shotbot/shotbot-mcp

Screenshot API for AI agents: capture any public URL as JPEG, PNG, WebP, AVIF, or PDF.

client:LangChain transport:stdio runtime:npm

Install shotbot mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "shotbot-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "shotbot-mcp"],
        }
})

tools = await client.get_tools()

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

shotbot mcp in other clients