monarch-mcp-ultimate
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@monarch-mcp-ultimateshow me my spending last month"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
monarch-mcp-ultimate
The most capable Monarch Money MCP server — merging the best features from all known implementations into one clean TypeScript project.
Features
Cookie-based auth for Apple Sign In / passkey / Google users (no email+password needed)
Standard email+password auth as a fallback
47 tools covering reads, writes, rules CRUD, merchant management, and intelligence analysis
Natural language dates — "last month", "30 days ago", "this year", etc.
Compact token-efficient transaction format by default (verbose mode available)
Full transaction rules CRUD — get, create, update, delete with exact GraphQL from Monarch's web app
Intelligence tools — rule candidates, uncategorized summary, categorization suggestions from history
Related MCP server: monarch-mcp
Authentication
Option A — Cookie Auth (for Apple Sign In / passkey / Google users)
This is the only option if you log in with Apple or Google or a passkey.
Open app.monarch.com in Chrome/Safari
Open DevTools → Application tab → Cookies →
app.monarch.comCopy the value of
session_idCopy the value of
csrftoken
{
"env": {
"MONARCH_SESSION_ID": "your-session-id-here",
"MONARCH_CSRF_TOKEN": "your-csrftoken-here"
}
}Sessions expire — you'll need to update these when Monarch logs you out (typically every 30 days or on password change).
Option B — Token Auth (email+password users)
Run the login helper to get a token:
cd /Users/kevinreed/Dev/monarch-mcp-ultimate
node -e "
const { login } = require('./dist/auth');
login('your@email.com', 'yourpassword').then(r => console.log('Token:', r.token));
"Then set MONARCH_TOKEN in your Claude Desktop config.
Claude Desktop Config
Cookie auth (~/.config/claude/claude_desktop_config.json)
{
"mcpServers": {
"monarch": {
"command": "node",
"args": ["/Users/kevinreed/Dev/monarch-mcp-ultimate/dist/index.js"],
"env": {
"MONARCH_SESSION_ID": "abc123...",
"MONARCH_CSRF_TOKEN": "xyz789..."
}
}
}
}Token auth
{
"mcpServers": {
"monarch": {
"command": "node",
"args": ["/Users/kevinreed/Dev/monarch-mcp-ultimate/dist/index.js"],
"env": {
"MONARCH_TOKEN": "your-token-here"
}
}
}
}All 47 Tools
Read Tools (21)
Tool | Description |
| All accounts; verbosity: compact/full |
| Balance for a specific account |
| Paginated transactions with natural language dates |
| Transactions flagged for review |
| Keyword/merchant search |
| Spending totals per category |
| Multi-axis: by category, group, merchant + totals |
| 5 parallel API calls — one-shot snapshot |
| Planned vs actual by category |
| Income + expenses + savings for a date range |
| Total assets minus liabilities |
| Income/expenses/savings for a month |
| All categories and groups |
| Historical balance snapshots |
| Investment holdings and performance |
| All transaction tags |
| Subscriptions, bills, recurring income |
| All auto-categorization rules |
| Savings goals |
| Connected institutions and credential status |
| Merchant details and recurring stream config |
Transaction Write Tools (7)
Tool | Description |
| Category, merchant, amount, date, notes, flags |
| Mark one or many as reviewed |
| Create a new manual transaction |
| Delete by ID |
| Set tags (replaces existing) |
| Split into multiple parts |
| Parallel updates with dry_run support |
Category / Tag Write Tools (3)
Tool | Description |
| New category in a group |
| Delete, optionally moving transactions |
| New transaction tag |
Account Write Tools (4)
Tool | Description |
| Rename, toggle net worth, hide |
| Delete account |
| Create manual account |
| Trigger data refresh |
Budget Tools (1)
Tool | Description |
| Set monthly budget for category or group |
Rules + Merchant Tools (4)
Tool | Description |
| Merchant pattern → category + optional tag/hide actions |
| Update existing rule |
| Delete rule by ID |
| Rename merchant or configure recurring stream |
Intelligence Tools (3)
Tool | Description |
| Suggests rules for merchants with consistent category history |
| Counts uncategorized + needs-review by month |
| Suggests categories for uncategorized transactions based on history |
Natural Language Dates
All date fields accept plain English:
Input | Resolves to |
| Today's date |
| Yesterday |
| First of current month |
| First of previous month |
| Jan 1 of current year |
| Jan 1 of previous year |
| 30 days before today |
| 6 months before today |
| 1 year before today |
| Passed through as-is |
Example Prompts
"Show me everything I spent on restaurants last month"
→ get_transactions(start_date="last month", end_date="today", category_id=...)
"What's my financial overview?"
→ get_complete_financial_overview()
"How much have I spent in the last 90 days, broken down by category?"
→ get_spending_summary(start_date="90 days ago", end_date="today")
"Find rules I should be creating based on my spending patterns"
→ get_rule_candidates(lookback_days=90, min_confidence=0.8)
"Which uncategorized transactions from last month can be auto-categorized?"
→ get_categorization_suggestions(lookback_days=30)
"Create a rule: anything from Amazon goes to Shopping"
→ create_transaction_rule(merchant_criteria_value="Amazon", merchant_criteria_operator="contains", set_category_id="...")
"Rename the merchant 'AMZN MKTP US' to 'Amazon'"
→ update_merchant(merchant_id="...", name="Amazon")
"Mark all transactions needing review as reviewed"
→ get_transactions_needing_review() → mark_transaction_reviewed(transaction_ids=[...])
"What's my uncategorized backlog for the past 6 months?"
→ get_uncategorized_summary(lookback_months=6)Build
cd /Users/kevinreed/Dev/monarch-mcp-ultimate
npm install
npm run buildSources
Built by merging:
keithah/monarch-mcp — TypeScript base, Smithery support
jamiew/monarch-mcp — Natural language dates, compact format, tool annotations, auth retry
robcerda/monarch-mcp-server — Full rules CRUD GraphQL, merchant management, split transactions
randallt21/monarch — Intelligence engine: rule candidates, auto-categorization logic
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oyemecarnal/monarch-mcp-ultimate'
If you have feedback or need assistance with the MCP directory API, please join our Discord server