Skip to content
LangChain

can see for LangChain

io.github.hurleysk/can-see

Let AI agents see and interact with terminal/CLI apps via PNG screenshots

client:LangChain transport:stdio runtime:npm

Install can see in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

can see in other clients