Lunch Money for LangChain
io.github.akutishevsky/lunchmoney-mcp
MCP server for managing LunchMoney personal finances: transactions, budgets, categories, and more.
client:LangChain
transport:stdio
runtime:npm
Install Lunch Money in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"lunchmoney-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@akutishevsky/lunchmoney-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs