Read-only access to Quicken For Mac financial data: transactions, spending, and portfolios.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"quicken": {
"args": [
"-y",
"quicken-mac-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'quicken-mac-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked quicken-mac-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for io.github.dweekly/quicken-mac-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 read the Quicken SQLite database directly with the sqlite3 CLI. Works in Claude Code and any other Claude surface that loads skills. No native module install, no MCP server process — just SQL. 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.
claude plugin install quicken-mac-mcp
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.
claude mcp add quicken -- npx -y quicken-mac-mcp
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).
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.
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.
These are