Quicken Mac MCP
Provides read-only access to Quicken for Mac financial data, allowing users to query accounts, transactions, and spending trends through natural language. The server functions by reading the local SQLite database directly while the Quicken application is open.
README
quicken-mac-mcp
An MCP server that gives Claude read-only access to your Quicken For Mac financial data. Also listed on the MCP Server Registry. Ask Claude about your accounts, transactions, spending by category, monthly trends, and more.
The database is always opened read-only — your Quicken data is never modified.
Requirements
Quicken For Mac must be open while using this server. Quicken encrypts its database file when the app is closed — the data is only readable while Quicken is running.
How it works
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). This MCP server reads that database directly and exposes 8 query tools to Claude.
Install
Claude Code (one-liner)
claude mcp add quicken -- npx -y quicken-mac-mcp
Claude Code (plugin)
claude plugin install quicken-mac-mcp
This installs the plugin with the MCP server and a /quicken skill that guides Claude on how to best query your data.
Claude Desktop (MCPB drag-and-drop)
Download quicken-mac-mcp.mcpb from the latest GitHub release and drag it into Claude Desktop. It will prompt you for your database path (or auto-detect it).
Claude Desktop (manual JSON)
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"quicken": {
"command": "npx",
"args": ["-y", "quicken-mac-mcp"]
}
}
}
Restart Claude Desktop and you'll see a hammer icon with 8 tools available.
Custom database path
If you have multiple Quicken files, or your .quicken bundle isn't in ~/Documents, set the QUICKEN_DB_PATH environment variable:
{
"mcpServers": {
"quicken": {
"command": "npx",
"args": ["-y", "quicken-mac-mcp"],
"env": {
"QUICKEN_DB_PATH": "/path/to/YourFile.quicken/data"
}
}
}
}
By default, the server auto-detects your Quicken database by picking the most recently modified .quicken bundle in ~/Documents.
Tools
| 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. |
spending_by_category |
Aggregate spending by category or parent category for a date range. |
spending_over_time |
Monthly spending totals, 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). |
Example prompts
- "List my accounts"
- "What did I spend on groceries last month?"
- "Show my spending by category for 2024"
- "How has my monthly spending changed over the past year?"
- "Find all transactions from Costco over $100"
- "What are my top 10 payees by transaction count?"
- "Compare my food spending in 2024 vs 2025"
Database schema
Quicken For Mac uses Core Data with these key tables:
| Table | Purpose |
|---|---|
ZACCOUNT |
Bank accounts, credit cards, investment accounts |
ZTRANSACTION |
Individual transactions |
ZCASHFLOWTRANSACTIONENTRY |
Split line items (where categories live) |
ZTAG (Z_ENT=79) |
Category tags with parent hierarchy |
ZUSERPAYEE |
Payee names |
Dates use Core Data epoch (seconds since 2001-01-01). The server handles all date conversion automatically — you pass ISO 8601 dates, it returns ISO 8601 dates.
Account types are stored as uppercase strings: CHECKING, CREDITCARD, SAVINGS, MORTGAGE, RETIREMENTIRA, ASSET, LIABILITY, LOAN, etc. The tools accept any casing.
Development
git clone https://github.com/dweekly/quicken-mac-mcp.git
cd quicken-mac-mcp
npm install
npm test # run tests
npm run lint # eslint
npm run format # prettier
npm run dev # run server locally
Docker
docker build -t quicken-mac-mcp .
docker run --rm -v ~/Documents/YourFile.quicken:/data:ro quicken-mac-mcp
Disclaimer
This project is an independent, community-developed open-source tool. It is not an official Intuit product and is not endorsed by, directly affiliated with, maintained by, or sponsored by Intuit Inc. or any of its subsidiaries. "Quicken" is a registered trademark of Intuit Inc. All product and company names are trademarks or registered trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
This software is provided "as is," without warranty of any kind. The authors and contributors are not responsible for any damage, data loss, or other issues arising from its use. Always back up your financial data before using third-party tools.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。