Skip to content
LangChain

quicken mac mcp for LangChain

io.github.dweekly/quicken-mac-mcp

Read-only access to Quicken For Mac financial data: transactions, spending, and portfolios.

client:LangChain transport:stdio runtime:npm

Install quicken mac mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "quicken-mac-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "quicken-mac-mcp"],
        }
})

tools = await client.get_tools()

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

quicken mac mcp in other clients