Skip to content
LangChain

SiftSum for LangChain

io.github.pytechno/siftsum

Private financial journal: receipts, recurring expenses, and cash flow with MCP tools.

client:LangChain transport:streamable-http

Install SiftSum in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

SiftSum in other clients