Skip to content
LangChain

Rho for LangChain

co.rho/api

Tools for your business banking with Rho, including accounts, transactions, and more

client:LangChain transport:streamable-http

Install Rho in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "api": {
            "transport": "streamable_http",
            "url": "https://rhoapi.rho.co/mcp/v1",
        }
})

tools = await client.get_tools()

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

Rho in other clients