Skip to content
LangChain

genai capture for LangChain

io.github.linhnnmt/genai-capture

Capture & annotate your screen from an AI agent: arrows, boxes, text, highlight, blur/redact.

client:LangChain transport:stdio runtime:npm

Install genai capture in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

genai capture in other clients