Skip to content
LangChain

ynab mcpb for LangChain

io.github.dizzlkheinz/ynab-mcpb

Local-first YNAB MCP for reconciliation, receipt splitting, safe cleanup, and spending analysis

client:LangChain transport:stdio runtime:npm

Install ynab mcpb in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

ynab mcpb in other clients