MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQChangelog

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

quicken-mac-mcp MCP Server

by dweekly
FinanceLow Risk10.0Local
Free

Read-only MCP server for querying Quicken For Mac financial data with Claude

About

An MCP server that gives Claude read-only access to your Quicken For Mac financial data. It reads the Core Data SQLite database that Quicken stores in your Documents folder and exposes 8 query tools for accounts, transactions, spending analysis, and investment portfolios. Quicken For Mac must be running (it encrypts the database when closed). Your data is never modified — the database is always opened read-only.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (3/3 approved).

4 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

database

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Path to your `YourQuickenFile.quicken/data` file. Default: auto-detects the most recently modified `.quicken` bundle in `~/Documents`.Optional

Environment variable: QUICKEN_DB_PATH

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "quicken-mac-mcp": {
      "env": {
        "QUICKEN_DB_PATH": "your-quicken-db-path-here"
      },
      "args": [
        "-y",
        "quicken-mac-mcp"
      ],
      "command": "npx"
    }
  }
}

Getting Started

Once installed, try these example prompts and explore these capabilities:

  • 1"List my accounts"
  • 2"What did I spend on groceries last month?"
  • 3"Show my spending by category for 2024"
  • 4"How has my monthly spending changed over the past year?"
  • 5"Find all transactions from Costco over $100"
  • 6"What are my top 10 payees by transaction count?"
  • 7"Compare my food spending in 2024 vs 2025"
  • 8Tool: list_accounts — List all accounts with name, type, and active/closed status
  • 9Tool: list_categories — List category tags with parent hierarchy
  • 10Tool: query_transactions — Query transactions with date, amount, payee, and category filters
  • 11Tool: spending_by_category — Aggregate spending by category for a date range
  • 12Tool: spending_over_time — Monthly spending totals with optional category breakdown
  • 13Tool: search_payees — Search payees by name with transaction counts
  • 14Tool: list_portfolio — Investment holdings with shares, cost basis, and optional live quotes
  • 15Tool: raw_query — Run arbitrary SELECT queries (500-row limit)

Documentation

View on GitHub

From the project's GitHub README.

npm version License: MIT GitHub release macOS only MCP Registry

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

ToolDescription
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.
spending_by_categoryAggregate spending by category or parent category for a date range.
spending_over_timeMonthly spending totals, optionally broken down by category.
search_payeesSearch payees by name with transaction counts.
list_portfolioList investment holdings with shares, cost basis, and stored Quicken price quotes.
raw_queryRun 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:

TablePurpose
ZACCOUNTBank accounts, credit cards, investment accounts
ZTRANSACTIONIndividual transactions
ZCASHFLOWTRANSACTIONENTRYSplit line items (where categories live)
ZTAGCategory tags with parent hierarchy (Z_ENT looked up at runtime)
ZUSERPAYEEPayee 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

Contributors

  • Manish Mukherjee — fixed dynamic Z_ENT lookup for CategoryTag (#4), added account_names filter and date fallback for imported transactions (#5)

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

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Tags

quickenfinancepersonal-financemacosbudgetingspendingtransactionsaccountsinvestmentsportfoliocategoriesread-onlysqlite

Use Cases

  • List all accounts with type
  • balance
  • and active/closed status
  • Query transactions with flexible filters: date range
  • account
  • amount
  • payee
  • category
  • Aggregate spending by category or parent category for any date range
  • Track monthly spending trends over time with optional category breakdowns
  • Search payees by name with transaction counts
  • View investment holdings with shares
  • cost basis
  • and optional live price quotes
  • Explore the raw database with arbitrary SELECT queries (500-row limit)
  • Auto-detects your Quicken database — no configuration needed for most users
  • Always read-only — your financial data is never modified

Links

Source CodeDocumentationnpm Package

Details

Published March 4, 2026
Version 1.0.0
0 installs
Local Plugin

More Finance MCP Servers

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

114
Stars
408
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
55
Installs
10.0
Security
5.0
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

89.9K
Stars
15
Installs
6.0
Security
5.0
Local

mcp-creator-typescript

Free

by mcp-marketplace · Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm — conversationally

-
Stars
14
Installs
10.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace · Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
13
Installs
10.0
Security
No ratings yet
Local

Google Workspace MCP

Free

by Taylorwilsdon · Productivity

Control Gmail, Calendar, Docs, Sheets, Drive, and more from your AI

1.6K
Stars
11
Installs
7.0
Security
No ratings yet
Local