Skip to content
LangChain

Manilo for LangChain

app.manilo/manilo

Log, query, and edit expenses, budgets, and accounts in Manilo from any MCP-compatible AI assistant.

client:LangChain transport:streamable-http

Install Manilo in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "manilo": {
            "transport": "streamable_http",
            "url": "https://api.manilo.app/mcp",
        }
})

tools = await client.get_tools()

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

Manilo in other clients