# Does Monarch Money have an MCP server?

**Yes — Official.** Monarch Money maintains an official MCP server.

> The official connector exists but is temporarily paused (a data-portability question with a partner, per Monarch's help article) — check the vendor doc for current status.

## Facts

- Verdict: Official (Yes)
- Access: Built into the product — Ships inside the vendor's own app or CLI rather than as a standalone download.
- Endpoint: `Monarch MCP Connector — currently paused`
- Category: [Finance & Fintech](https://mcpyet.com/category/finance-fintech/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **In-product:** Monarch MCP Connector — currently paused — ships inside Monarch Money's own product rather than as a standalone server. Documented at <https://help.monarch.com/hc/en-us/articles/50207234679956-Monarch-MCP-Connector>.
- **Community alternative:** [robcerda/monarch-mcp-server](https://github.com/robcerda/monarch-mcp-server) — ★ 308, pushed 2026-06-27. MCP Server for use with Monarch Money

## How to connect it

Ships inside the vendor's own app or CLI rather than as a standalone download.

### Claude Code

```sh
claude mcp add monarchmoney -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "monarchmoney": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "monarchmoney": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "monarchmoney": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

Official Monarch MCP Connector documented on help.monarch.com; community repos archived in its favor by Jul 2026. Paused as of Aug 2026.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Finance & Fintech

- [TradingView](https://mcpyet.com/mcp/tradingview.md) — Community only (Sort of)
- [Robinhood](https://mcpyet.com/mcp/robinhood.md) — Official (Yes)
- [Stripe](https://mcpyet.com/mcp/stripe.md) — Official (Yes)
- [PayPal](https://mcpyet.com/mcp/paypal.md) — Official (Yes)
- [Base](https://mcpyet.com/mcp/base.md) — Official (Yes)
- [Alchemy](https://mcpyet.com/mcp/alchemy.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/monarch-money/ — data refreshed 2026-08-11
