Read-only access to Quicken For Mac financial data: transactions, spending, and portfolios.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Quicken Mac MCP.
list_accountsList all accounts with name, type, and active/closed status. Optional type filter.
list_categoriesList all category tags with parent hierarchy. Filter by expense/income.
query_transactionsQuery transactions with filters: date range, account types/names, amount range, payee search, category. Returns one row per split entry, with `note` (transaction-level) and `split_note` (per-split) memos.
spending_by_categoryAggregate negative consumer-spending splits by category, excluding transfers and report-excluded rows and preserving `(Uncategorized)`.
spending_over_timeMonthly negative consumer-spending totals with the same exclusions, optionally broken down by category.
search_payeesSearch payees by name with transaction counts.
A Claude Skill + MCP server that gives Claude read-only access to your Quicken For Mac financial data. Ask Claude about your accounts, transactions, spending by category, monthly trends, investment holdings, and more.
The database is always opened read-only β your Quicken data is never modified.
This repo ships two artifacts that share the same schema knowledge (docs/schema.md):
plugin/skills/quicken/SKILL.md) β teaches Claude to probe and read the Quicken SQLite database directly with Python 3's standard-library SQLite support. Its focused references/ cover balances, cash flow, investments, budgets, tags, and QuickFill rules. Works in Claude Code and any other Claude surface that loads skills. No native module install or MCP server process. This is the recommended path.list_accounts, query_transactions, spending_by_category, β¦). Use it when you're working in a non-Claude MCP client (Cursor, Cline, mcp-remote bridges) that can't load skills, or when you'd rather call typed tools than have Claude write SQL.The Claude Code plugin install (claude plugin install quicken-mac-mcp) bundles both, with the skill leading and the MCP tools available as shortcuts.
Quicken For Mac must be open while using either the skill or the MCP. Quicken encrypts its database file when the app is closed β the data is only readable while Quicken is running.
Quicken For Mac stores data in a Core Data SQLite database inside a .quicken bundle in your Documents folder (e.g., ~/Documents/MyFinances.quicken/data). The skill teaches Claude how to query that database directly; the MCP server is a thin wrapper that exposes eight prepackaged queries as tools.
This installs both the /quicken skill (recommended path) and the MCP server. Claude will lead with the skill and fall back to the MCP tools when convenient.
Use these if you're in a non-Claude-Code client that can't load skills, or you only want the typed-tool wrapper.
Download the bundle for your Mac from the latest GitHub release and drag it into Claude Desktop:
quicken-mac-mcp-arm64.mcpbquicken-mac-mcp-x64.mcpbIt will prompt you for your database path (or auto-detect it).
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
Restart Claude Desktop and you'll see a hammer icon with 8 tools available.
If you have multiple Quicken files, or your .quicken bundle isn't in ~/Documents, set the QUICKEN_DB_PATH environment variable:
By default, the server auto-detects your Quicken database only when exactly one .quicken bundle exists in ~/Documents. If multiple bundles exist, it refuses to guess; set QUICKEN_DB_PATH explicitly.
These are the eight prepackaged tools the MCP server exposes. The skill covers the same ground (and more) by writing SQL directly against the database β see plugin/skills/quicken/SKILL.md.
| Tool | Description |
|---|---|
list_accounts | List all accounts with name, type, and active/closed status. Optional type filter. |
list_categories | List all category tags with parent hierarchy. Filter by expense/income. |
query_transactions | Query transactions with filters: date range, account types/names, amount range, payee search, category. Returns one row per split entry, with note (transaction-level) and split_note (per-split) memos. |
spending_by_category | Aggregate negative consumer-spending splits by category, excluding transfers and report-excluded rows and preserving (Uncategorized). |
spending_over_time | Monthly negative consumer-spending totals with the same exclusions, optionally broken down by category. |
search_payees | Search payees by name with transaction counts. |
list_portfolio | List investment holdings with shares, cost basis, and stored Quicken price quotes. |
raw_query | Run arbitrary SELECT queries (500-row limit). |
qmac)This project includes a fully featured, self-documenting command-line interface qmac that allows you to query your Quicken SQLite database directly from the terminal without going through an MCP client.
--help / -h): Easily inspect parameter descriptions and types for any subcommand (e.g. qmac spending-by-category --help).qmac man): Renders the complete, stylized UNIX man page guide right in your shell.--json to get raw data for scripting.Want to move your complete personal financial history out of Quicken to your own sovereign, self-hosted, or custom agentic analysis platform?
This project includes a high-speed, zero-dependency, pure Python utility scripts/export_sovereign_csv.py that connects to your unlocked Quicken database and extracts it into a cleanly normalized, portable package.
quicken_sovereign_export/ will be generated, containing:
accounts.csv: Beautifully normalized accounts list (checking, credit, brokerage, retirement, etc.).categories.csv: Income & expense category path structure.payees.csv: Registered merchant names list.transactions.csv: Top-level ledger with post-date, notes, and transaction-level details.transaction_splits.csv: Line-item splits showing amounts and category IDs.holdings.csv: Active investment holdings reconstructed from your individual tax lots with cost basis and unrealized returns.tags.csv: Custom user tags mapped directly to splits.schema.json: Complete relational column and foreign key reference dictionary.README.md: A detailed migration guide demonstrating how to load and query your financial history instantly in DuckDB, Pandas, PostgreSQL, or other databases.This allows other agentic platforms (like custom GPTs, self-hosted LLMs, or sovereign database agents) to immediately parse, ingest, and analyze your entire financial history.
Quicken For Mac uses Core Data with these key tables:
| Table | Purpose |
|---|---|
ZACCOUNT | Bank accounts, credit cards, investment accounts |
ZTRANSACTION | Individual transactions (with ZNOTE transaction-level memo) |
ZCASHFLOWTRANSACTIONENTRY | Split line items β categories AND per-split ZNOTE memos live here |
ZTAG | Category tags with parent hierarchy (Z_ENT looked up at runtime) |
ZUSERPAYEE | Payee names |
Dates use Core Data epoch (seconds since 2001-01-01). The MCP server handles all date conversion automatically β you pass ISO 8601 dates, it returns ISO 8601 dates. The skill recipes show the conversion (+ 978307200) inline so Claude can write SQL directly.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/quicken-mac-mcp)<a href="https://allmcps.com/mcp/quicken-mac-mcp"><img src="https://allmcps.com/api/badge/quicken-mac-mcp?style=directory" alt="Quicken Mac MCP on AllMCPs" /></a>