Skip to content
LangChain

budgey for LangChain

com.budgeyapp/budgey

See what's left this period, log spending, and manage your Budgey budget.

client:LangChain transport:streamable-http

Install budgey in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "budgey": {
            "transport": "streamable_http",
            "url": "https://www.budgeyapp.com/mcp",
        }
})

tools = await client.get_tools()

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

budgey in other clients