Skip to main content
ClaudeWave

Modern MCP server for accessing Monarch Money financial data using AI agents, like Claude. Token-efficient, smart tool design, and uses latest MCP protocol features

MCP ServersOfficial Registry22 stars10 forksPythonMITUpdated today
ClaudeWave Trust Score
100/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Mature repo (>1y old)
  • Documented (README)
Last scanned: 9/21/2026
Install in Claude Code / Claude Desktop
Method: UVX (Python) · monarch-mcp-jamiew
Claude Code CLI
claude mcp add monarch-mcp -- uvx monarch-mcp-jamiew
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "monarch-mcp": {
      "command": "uvx",
      "args": ["monarch-mcp-jamiew"],
      "env": {
        "MONARCH_PASSWORD": "<monarch_password>",
        "MONARCH_MFA_SECRET": "<monarch_mfa_secret>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
MONARCH_PASSWORDMONARCH_MFA_SECRET
Use cases

MCP Servers overview

<!-- mcp-name: io.github.jamiew/monarch-mcp -->
# Monarch Money MCP Server

Use an AI assistant to read and update your [Monarch Money](https://www.monarchmoney.com/) accounts, transactions, and budgets through [MCP](https://modelcontextprotocol.io/).

## Why this fork?

This FastMCP rewrite adds these tools to [colvint's original server](https://github.com/colvint/monarch-money-mcp):

- **Search and bulk edits:** `search_transactions` finds merchants or keywords; `update_transactions_bulk` edits transactions in parallel with per-item results.
- **Spending analysis:** `get_spending_summary` groups totals by category, account, or month; `analyze_spending_patterns` compares months.
- **One-call overview:** `get_complete_financial_overview` combines accounts, budgets, cashflow, transactions, and categories.
- **Splits and recurring schedules:** read and replace transaction splits, view scheduled occurrences, and edit merchant-wide recurrence.

Unlike the original and [keithah's enhanced Python fork](https://github.com/keithah/monarch-money-mcp-enhanced-python), this server also provides:

- **Typed results:** structured output with `outputSchema`, plus a text fallback.
- **MCP resources and prompts:** account/category/institution resources, per-account holdings/history templates, and guided prompts with argument completion.
- **Assistant-friendly calls:** compact transaction/category records, natural-language dates, read/write labels, and progress on batch analysis.

Comparison checked September 14, 2026. Other forks overlap on financial tools; the enhanced Python fork exposes a broader library API. This project focuses on analysis workflows and MCP integration, not exposing every API method. See the [tool catalog](#tools).

## Setup

Install [`uv`](https://docs.astral.sh/uv/), then configure your MCP client to run `uvx monarch-mcp-jamiew`. You'll need your Monarch email and password, plus an [MFA secret](#getting-your-mfa-secret) for TOTP-based 2FA.

These features are included in [0.5.0](https://github.com/jamiew/monarch-mcp/releases/tag/v0.5.0), available through [PyPI](https://pypi.org/project/monarch-mcp-jamiew/).

### Standard config

For clients with an `mcpServers` config:

```json
{
  "mcpServers": {
    "monarch-money": {
      "command": "uvx",
      "args": ["monarch-mcp-jamiew"],
      "env": {
        "MONARCH_EMAIL": "your-email@example.com",
        "MONARCH_PASSWORD": "your-password",
        "MONARCH_MFA_SECRET": "your-mfa-secret-key"
      }
    }
  }
}
```

<details>
<summary><b>Claude Desktop</b></summary>

Add the `monarch-money` entry from the [standard config](#standard-config) to your config file's `mcpServers` object (create the file if needed):

- **macOS**: `~/Library/Application\ Support/Claude/claude_desktop_config.json`
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`

Then fully quit and reopen Claude Desktop.

</details>

<details>
<summary><b>Claude Code</b></summary>

```bash
claude mcp add monarch-money \
  -e MONARCH_EMAIL=your-email@example.com \
  -e MONARCH_PASSWORD=your-password \
  -e MONARCH_MFA_SECRET=your-mfa-secret-key \
  -- uvx monarch-mcp-jamiew
```

Add `-s user` to make it available across all your projects. Verify with `claude mcp list`.

</details>

<details>
<summary><b>Codex CLI</b></summary>

```bash
codex mcp add monarch-money \
  --env MONARCH_EMAIL=your-email@example.com \
  --env MONARCH_PASSWORD=your-password \
  --env MONARCH_MFA_SECRET=your-mfa-secret-key \
  -- uvx monarch-mcp-jamiew
```

Or add the equivalent block to `~/.codex/config.toml`:

```toml
[mcp_servers.monarch-money]
command = "uvx"
args = ["monarch-mcp-jamiew"]
env = { MONARCH_EMAIL = "your-email@example.com", MONARCH_PASSWORD = "your-password", MONARCH_MFA_SECRET = "your-mfa-secret-key" }
```

</details>

<details>
<summary><b><code>.mcp.json</code> (project-scoped)</b></summary>

For Claude Code's project scope, save the [standard config](#standard-config) as `.mcp.json` in your project root. Keep credential-bearing files out of version control.

</details>

<details>
<summary><b>Hermes</b></summary>

Add to `~/.hermes/config.yaml` under `mcp_servers:`, then `/reload-mcp` (or restart Hermes):

```yaml
mcp_servers:
  monarch-money:
    command: uvx
    args: ["monarch-mcp-jamiew"]
    env:
      MONARCH_EMAIL: "your-email@example.com"
      MONARCH_PASSWORD: "your-password"
      MONARCH_MFA_SECRET: "your-mfa-secret-key"
```

</details>

<details>
<summary><b>OpenClaw</b></summary>

Add the [standard config](#standard-config) to `~/.openclaw/openclaw.json` under `mcpServers`, then restart the gateway.

</details>

<details>
<summary><b>Any other MCP client (Cursor, VS Code, Windsurf, Cline, Zed, …)</b></summary>

Set up a local stdio MCP server with command `uvx`, argument `monarch-mcp-jamiew`, and the credentials above. Follow your client's config format.

Not sure how? Tell your agent:

> Install the Monarch Money MCP server from https://github.com/jamiew/monarch-mcp. The PyPI package is `monarch-mcp-jamiew`, run via `uvx monarch-mcp-jamiew`. It needs `MONARCH_EMAIL`, `MONARCH_PASSWORD`, and `MONARCH_MFA_SECRET` for TOTP-based 2FA.

</details>

<details>
<summary id="from-source-development"><b>From source (development)</b></summary>

Source installs use a pinned `monarchmoneycommunity` commit:

```bash
git clone https://github.com/jamiew/monarch-mcp
cd monarch-mcp
uv sync --locked
```

Then point your client at the local copy with absolute paths (find them with `which uv` and `pwd`):

```json
{
  "mcpServers": {
    "monarch-money": {
      "command": "/abs/path/to/uv",
      "args": ["--directory", "/abs/path/to/monarch-mcp", "run", "python", "server.py"],
      "env": {
        "MONARCH_EMAIL": "your-email@example.com",
        "MONARCH_PASSWORD": "your-password",
        "MONARCH_MFA_SECRET": "your-mfa-secret-key"
      }
    }
  }
}
```

</details>

> [!NOTE]
> The `claude mcp add` and `codex mcp add` commands can save credentials in shell history. Edit the client's config directly to avoid that, and protect the config file.

### Getting your MFA secret

1. Go to Monarch Money settings and enable 2FA
2. When shown the QR code, look for "Can't scan?" or "Enter manually"
3. Copy the TOTP secret key, not the rotating six-digit code
4. Use this as your `MONARCH_MFA_SECRET`

## Tools

The server exposes these 25 tools.

| Tool | Description |
|------|-------------|
| `get_accounts` | List accounts with balances |
| `get_transactions` | Transactions with date/account/category and pending/posted filtering |
| `search_transactions` | Search by merchant name or keyword, optionally pending/posted only |
| `get_transaction_categories` | Category list (compact by default) |
| `get_transaction_rules` | Page through compact automation rules in priority order |
| `get_household_members` | Household members and IDs for ownership updates |
| `create_transaction` | Create a manual transaction |
| `update_transaction` | Update transaction fields or assign ownership |
| `update_transactions_bulk` | Update fields or owners with per-item success/failure |
| `get_transaction_splits` | Read a transaction's splits |
| `update_transaction_splits` | Replace all splits; an empty list removes them |
| `get_budgets` | Budget data and spending analysis |
| `get_cashflow` | Income and expense analysis |
| `get_account_holdings` | Investment holdings for an account (requires `account_id`) |
| `get_all_holdings` | Holdings grouped by brokerage account; excludes other account types |
| `get_account_history` | Paginated balance history with inclusive, locally applied ISO date bounds |
| `get_institutions` | Linked financial institutions |
| `get_recurring_transactions` | Scheduled occurrences within a date range |
| `update_recurring_transaction` | Change a merchant's recurring schedule |
| `set_budget_amount` | Set a budget category amount |
| `create_manual_account` | Create a manually tracked account |
| `refresh_accounts` | Trigger account data refresh |
| `get_spending_summary` | Spending aggregated by category, account, or month |
| `get_complete_financial_overview` | Compact account, transaction, budget, and cashflow summaries; full sections opt-in |
| `analyze_spending_patterns` | Monthly trends and forecasts, with compact budgets and explicit upstream errors |

Use `is_pending=True` for pending transactions or `False` for posted ones; omit it
for both. Single and bulk updates accept `owner_user_id` from `get_household_members`.
An empty string sets Shared ownership; omitted/null leaves ownership unchanged.
Assignments override inherited ownership. Inspect `ownedByUser` with `verbose=True`;
the update response does not include it.

Rules default to 25 per page (maximum 100); history defaults to 100 (maximum 1,000).
Use `limit`, `offset`, and returned `next_offset` to continue; `total_count` covers all
matching records. Rule details remain available with `verbose=True`.

Overviews and spending analysis default to compact summaries; `verbose=True` restores
full sections. Transaction samples are capped at 500 and 2,000 respectively, even
in verbose mode. Check `batch_metadata.transactions_truncated` before treating
totals as complete; `null` means the upstream count was unavailable.

### Recurring transactions

`get_recurring_transactions(start_date, end_date)` returns a forecast, not posted history.
Dates accept ISO or natural language. No dates selects this month; one date fills
the missing bound from that month.

Occurrences include stream, account, category, and a matched `transactionId` when
available. `isPast` does not mean paid. Use `get_transactions(is_recurring=True)`
for recorded transactions; do not count forecasts and posted matches twice.

`update_recurring_transaction` changes a merchant-wide schedule, not one occurrence.
Use `stream.merchant.id`, not `stream.id` or `transactionId`, and the current merchant
name to avoid renaming it. Pass only settings to change: `frequency`, `base_d
mcpmonarchmonarchmoney

What people ask about monarch-mcp

What is jamiew/monarch-mcp?

+

jamiew/monarch-mcp is mcp servers for the Claude AI ecosystem. Modern MCP server for accessing Monarch Money financial data using AI agents, like Claude. Token-efficient, smart tool design, and uses latest MCP protocol features It has 22 GitHub stars and its last recorded update is dated 2026-09-20.

How do I install monarch-mcp?

+

You can install monarch-mcp by cloning the repository (https://github.com/jamiew/monarch-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is jamiew/monarch-mcp safe to use?

+

Our security agent has analyzed jamiew/monarch-mcp and assigned a Trust Score of 100/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains jamiew/monarch-mcp?

+

jamiew/monarch-mcp is maintained by jamiew. The last recorded GitHub activity is dated 2026-09-20, with 0 open issues.

Are there alternatives to monarch-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy monarch-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: jamiew/monarch-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/jamiew-monarch-mcp)](https://claudewave.com/repo/jamiew-monarch-mcp)
<a href="https://claudewave.com/repo/jamiew-monarch-mcp"><img src="https://claudewave.com/api/badge/jamiew-monarch-mcp" alt="Featured on ClaudeWave: jamiew/monarch-mcp" width="320" height="64" /></a>

More MCP Servers

monarch-mcp alternatives