Skip to content
LangChain

mcp for ynab for LangChain

io.github.walensis-labs/mcp-for-ynab

YNAB budget access for AI assistants: safe gated writes, month-close sessions, float attribution.

client:LangChain transport:stdio runtime:npm

Install mcp for ynab in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-for-ynab": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@walensis/mcp-for-ynab"],
        }
})

tools = await client.get_tools()

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

mcp for ynab in other clients