Skip to content
LangChain

clawops for LangChain

io.github.dfridkin/clawops

Deploy self-hosted OpenClaw to AWS, GCP, Azure or a local VM — a CLI and an MCP server in one.

client:LangChain transport:stdio runtime:npm

Install clawops in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "clawops": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@clawops/cli"],
        }
})

tools = await client.get_tools()

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

clawops in other clients