Access Monarch financial data — accounts, transactions, budgets, and more
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"monarch-money": {
"env": {
"MONARCH_EMAIL": "your-email@example.com",
"MONARCH_PASSWORD": "your-password",
"MONARCH_MFA_SECRET": "your-mfa-secret-key"
},
"args": [
"--directory",
"/path/to/monarch-mcp",
"run",
"python",
"server.py"
],
"command": "/path/to/uv"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server for Monarch Money — gives AI assistants like Claude access to your financial accounts, transactions, budgets, and more.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
MCP Security Weekly
Get CVE alerts and security updates for io.github.jamiew/monarch-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for Monarch Money — gives AI assistants like Claude access to your financial accounts, transactions, budgets, and more.
Originally forked from @colvint/monarch-money-mcp but has diverged significantly with a full rewrite, many new features, and a modern FastMCP architecture.
Built with the MonarchMoney Python library by @hammem — a fantastic unofficial API for Monarch Money with full MFA support. We currently use the community fork by @bradleyseanf which tracks the latest Monarch Money API changes.
cd /path/to/monarch-mcp
uv sync
Add to your .mcp.json (Claude Desktop, Claude Code, etc.):
{
"mcpServers": {
"monarch-money": {
"command": "/path/to/uv",
"args": [
"--directory",
"/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"
}
}
}
}
Use absolute paths — find yours with which uv and pwd.
T5SPVJIBRNPNNINFSH5W7RFVF2XYADYX)MONARCH_MFA_SECRET| Tool | Description |
|---|---|
get_accounts | List accounts with balances |
get_transactions | Transactions with date/account/category filtering |
search_transactions | Search by merchant name or keyword |
get_transaction_categories | Category list (compact by default) |
create_transaction | Create a manual transaction |
update_transaction | Update a single transaction |
update_transactions_bulk | Update multiple transactions in parallel |
get_budgets | Budget data and spending analysis |
get_cashflow | Income and expense analysis |
get_account_holdings | Investment holdings |
get_account_history | Account balance history |
get_institutions | Linked financial institutions |
get_recurring_transactions | Recurring transaction detection |
set_budget_amount | Set a budget category amount |
create_manual_account | Create a manually-tracked account |
refresh_accounts | Trigger account data refresh |
get_complete_financial_overview | Combined 5-API call in parallel |
analyze_spending_patterns | Multi-month trend analysis |
get_usage_analytics | Tool usage stats and optimization tips |
By default, transactions return a compact format with the fields that matter:
{
"id": "123456789012345678",
"date": "2025-03-15",
"amount": -12.50,
"merchant": "Corner Deli",
"plaidName": "CORNER DELI NYC",
"category": "Restaurants & Bars",
"categoryId": "cat_001",
"account
... [View full README on GitHub](https://github.com/jamiew/monarch-mcp#readme)