Skip to content
LangChain

three.ws Autopilot for LangChain

io.github.nirholas/autopilot-mcp

Set autopilot scopes and a daily SOL spend cap, then propose, execute, and undo agent actions.

client:LangChain transport:stdio runtime:npm

Install three.ws Autopilot in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "autopilot-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@three-ws/autopilot-mcp"],
        }
})

tools = await client.get_tools()

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

three.ws Autopilot in other clients