Skip to content
LangChain

cli for LangChain

io.settlemesh/cli

Deploy and monetize agent-built apps: login, database, usage billing, and end-user-pays.

client:LangChain transport:stdio runtime:npm

Install cli in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

cli in other clients