Skip to content
LangChain

computer use omni for LangChain

io.github.jason26214/computer-use-omni

A 1:1 replica of Claude Desktop's computer-use tool surface, for Windows and the Claude Code CLI.

client:LangChain transport:stdio runtime:pypi

Install computer use omni in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "computer-use-omni": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["computer-use-omni"],
        }
})

tools = await client.get_tools()

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

computer use omni in other clients