Monarch Money API client with 30 MCP tools for accounts, transactions, budgets, and cashflow.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Node.js/TypeScript library for accessing Monarch Money data.
Disclaimer: This project is unofficial and not affiliated with Monarch Money.
Requires Node.js 18+ (uses native fetch and AbortSignal.timeout).
Monarch's API requires email verification (OTP) for new devices/sessions, even when MFA is disabled. The library handles this with distinct exception types so your app can respond appropriately.
The MFA secret is the "Two-factor text code" from Settings > Security > Enable MFA in Monarch Money.
After a successful login (including email OTP), you can save the token to avoid re-authenticating on every run:
All methods return typed responses. Hover over any method in your editor for full JSDoc and type information.
| Method | Returns | Description |
|---|---|---|
getAccounts() | GetAccountsResponse | All linked accounts |
getAccountTypeOptions() | GetAccountTypeOptionsResponse | Available account types/subtypes |
getRecentAccountBalances(startDate?) | GetRecentAccountBalancesResponse | Daily balances (default: last 31 days) |
getAccountSnapshotsByType(startDate, timeframe) | GetSnapshotsByAccountTypeResponse | Snapshots by type ("year" / "month") |
getAggregateSnapshots(options?) | GetAggregateSnapshotsResponse | Aggregate net value over time |
getAccountHoldings(accountId) | GetAccountHoldingsResponse | Securities in a brokerage account |
getAccountHistory(accountId) | AccountHistorySnapshot[] | Daily balance history |
getInstitutions() | GetInstitutionsResponse | Linked institutions |
getBudgets(startDate?, endDate?) | GetBudgetsResponse | Budgets with actuals (default: last month โ next month) |
getSubscriptionDetails() | GetSubscriptionDetailsResponse | Plan status (trial, premium, etc.) |
getTransactionsSummary() | GetTransactionsSummaryResponse | Aggregate summary |
getTransactions(options?) | GetTransactionsResponse | Transactions with full filtering |
getAllTransactions(options?) | Transaction[] | All matching transactions (auto-paginates) |
getTransactionPages(options?) | AsyncGenerator<Transaction[]> | Async generator yielding pages |
getTransactionCategories() | GetTransactionCategoriesResponse | All categories |
getTransactionCategoryGroups() | GetTransactionCategoryGroupsResponse | Category groups |
getTransactionDetails(id) | typed response | Single transaction detail |
getTransactionSplits(id) | typed response | Splits for a transaction |
getTransactionTags() | GetTransactionTagsResponse | All tags |
getCashflow(options?) | GetCashflowResponse | Cashflow by category, group, merchant |
getCashflowSummary(options?) | GetCashflowSummaryResponse | Income, expense, savings, savings rate |
getRecurringTransactions(start?, end?) | GetRecurringTransactionsResponse | Upcoming recurring transactions |
isAccountsRefreshComplete(ids?) | boolean | Check refresh status |
| Method | Returns | Description |
|---|---|---|
createManualAccount(params) | CreateManualAccountResponse | Create manual account |
updateAccount(id, updates) | UpdateAccountResponse | Update account settings/balance |
deleteAccount(id) | DeleteAccountResponse | Delete account |
requestAccountsRefresh(ids) | boolean | Start refresh (non-blocking) |
requestAccountsRefreshAndWait(opts?) | boolean | Refresh and poll until done |
createTransaction(params) | CreateTransactionResponse | Create transaction |
updateTransaction(id, updates) | UpdateTransactionResponse | Update transaction |
deleteTransaction(id) | boolean | Delete transaction |
updateTransactionSplits(id, splits) | UpdateTransactionSplitResponse | Manage splits |
createTransactionCategory(params) | CreateCategoryResponse | Create category |
deleteTransactionCategory(id, moveTo?) | boolean | Delete category |
deleteTransactionCategories(ids) | (boolean | Error)[] | Bulk delete |
createTransactionTag(name, color) | CreateTransactionTagResponse | Create tag |
setTransactionTags(txId, tagIds) | SetTransactionTagsResponse | Set tags on transaction |
setBudgetAmount(params) | SetBudgetAmountResponse | Set/clear budget |
uploadAccountBalanceHistory(id, csv) | void | Upload balance history CSV |
Retry automatically handles transient failures (429 Too Many Requests, 500, 502, 503, 504) with exponential backoff and jitter. The Retry-After header is respected on 429 responses.
getTransactions() returns a single page. For large datasets, use the auto-pagination helpers:
Both methods accept the same filter options as getTransactions() (date range, category, account, tags, etc.).
Track account refresh progress with the onProgress callback:
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/monarchmoney)<a href="https://allmcps.com/mcp/monarchmoney"><img src="https://allmcps.com/api/badge/monarchmoney?style=directory" alt="Monarchmoney on AllMCPs" /></a>