categorize transactions for LangChain
io.github.theluckystrike/categorize-transactions
Import a bank CSV, categorise it, summarise it per currency and reconcile it against your expenses.
client:LangChain
transport:streamable-http
runtime:mcpb
tools:15
Install categorize transactions in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"categorize-transactions": {
"transport": "streamable_http",
"url": "https://mcp.zovo.one/mcp/categorize-transactions",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs