Skip to content
LangChain

cli for LangChain

io.github.pushtodisplay/cli

PushToDisplay MCP server — send real-time updates to display boards on iOS and Android devices.

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", "pushtodisplay"],
        }
})

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