Skip to main content

monarch-money-mcp-server

MCP server for accessing Monarch Money personal finance data through Claude Desktop and Claude Code

跳到安装

来源信息

仓库
reason-machines/mcp-skills
最近来源活动
2026年5月24日 17:51
检测到的 SKILL.md 语言
英语
星标
7
分支
2

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
monarch-money-mcp-server
description
MCP server for accessing Monarch Money personal finance data through Claude Desktop and Claude Code
triggers
["show me my monarch money accounts","get my recent transactions from monarch","check my budget in monarch money","analyze my spending with monarch","create a transaction in monarch money","categorize my monarch transactions","view my net worth from monarch","refresh my monarch money accounts"]
# Monarch Money MCP Server > Skill by [ara.so](https://ara.so) — MCP Skills collection ## Overview The Monarch Money MCP Server provides seamless integration with the Monarch Money personal finance platform through the Model Context Protocol. It enables Claude Desktop and Claude Code to access your financial accounts, transactions, budgets, analytics, and more through a comprehensive set of tools. Built on the [MonarchMoneyCommunity Python library](https://github.com/bradleyseanf/monarchmoneycommunity) with full MFA support. ## Installation ### 1. Clone and Install Dependencies ```bash git clone https://github.com/robcerda/monarch-mcp-server.git cd monarch-mcp-server # Using pip pip install -r requirements.txt pip install -e . # OR using uv uv sync ``` ### 2. Configure Claude Desktop Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows): ```json { "mcpServers": { "Monarch Money": { "command": "/opt/homebrew/bin/uv", "args": [ "run", "--with", "mcp[cli]", "--with-editable", "/absolute/path/to/monarch-mcp-server", "mcp", "run", "/absolute/path/to/monarch-mcp-server/src/monarch_mcp_server/server.py" ] } } } ``` **If using pip instead of uv:** ```json { "mcpServers": { "Monarch Money": { "command": "python", "args": ["/absolute/path/to/monarch-mcp-server/src/monarch_mcp_server/server.py"] } } } ``` ### 3. Configure Claude Code (CLI) **Global config** (`~/.claude.json` or `%USERPROFILE%\.claude.json`): ```json { "mcpServers": { "Monarch Money": { "command": "/opt/homebrew/bin/uv", "args": [ "run", "--with", "mcp[cli]", "--with-editable", "/absolute/path/to/monarch-mcp-server", "mcp", "run", "/absolute/path/to/monarch-mcp-server/src/monarch_mcp_server/server.py" ] } } } ``` **Project-level config** (`.mcp.json` in project directory): ```json { "Monarch Money": { "command": "/opt/homebrew/bin/uv", "args": [ "run", "--with", "mcp[cli]", "--with-editable", "/absolute/path/to/monarch-mcp-server", "mcp", "run", "/absolute/path/to/monarch-mcp-server/src/monarch_mcp_server/server.py" ] } } ``` ### 4. One-Time Authentication Run the authentication setup script **outside of Claude**: ```bash cd /absolute/path/to/monarch-mcp-server # Using python python login_setup.py # OR using uv uv run python login_setup.py ``` Follow prompts to enter: - Monarch Money email and password - 2FA code (if MFA is enabled) Session tokens are stored securely and persist for weeks/months. **For SSO/Google sign-in users:** Use the `monarch_login_with_token` function to paste a session token from your browser. ## Core Tools ### Account Management #### `get_accounts` Retrieve all linked financial accounts with balances and institution info. ```python # Returns all accounts with: id, displayName, currentBalance, accountType, institution get_accounts() ``` **Example prompt:** ``` Show me all my financial accounts ``` #### `get_account_holdings` View securities and investments in investment accounts. ```python get_account_holdings(account_id="acc_123456") ``` **Example prompt:** ``` What holdings do I have in my investment account acc_123456? ``` #### `refresh_accounts` Request real-time data refresh from financial institutions. ```python refresh_accounts() ``` **Example prompt:** ``` Refresh all my account balances from the banks ``` ### Transaction Access #### `get_transactions` Fetch transactions with filtering, pagination, and reconciliation fields. ```python # Basic usage - last 50 transactions get_transactions(limit=50) # Filtered by date range get_transactions( start_date="2024-01-01", end_date="2024-01-31", limit=100 ) # Filter by account and category get_transactions( account_id="acc_123", category_ids=["cat_456", "cat_789"], limit=50, offset=0 ) # Search transactions get_transactions( search="Amazon", wide_search=True, limit=25 ) # Filter by flags get_transactions( has_notes=False, is_split=False, limit=100 ) ``` **Example prompts:** ``` Show me my last 100 transactions Get all Amazon transactions from January 2024 Show me uncategorized transactions with no notes ``` #### `create_transaction` Add a new transaction to an account. ```python create_transaction( account_id="acc_123", amount=-45.99, description="Coffee shop", date="2024-01-15", category_id="cat_dining", merchant_name="Local Cafe" ) ``` **Example prompt:** ``` Create a transaction for $45.99 at Local Cafe on January 15th in my checking account ``` #### `update_transaction` Modify existing transaction details. ```python update_transaction( transaction_id="txn_789", amount=-52.00, description="Grocery store shopping", category_id="cat_groceries", date="2024-01-16" ) ``` **Example prompt:** ``` Update transaction txn_789 to $52 and change the category to groceries ``` ### Budget Management #### `get_budgets` Access budget information with spending analysis. ```python # Current month budgets get_budgets() # Specific date range get_budgets( start_date="2024-01-01", end_date="2024-12-31" ) ``` **Example prompt:** ``` Show me my budgets for 2024 ``` #### `set_budget_amount` Create or modify budget amounts. ```python # Set budget for a category set_budget_amount( amount=500.00, category_id="cat_dining", start_date="2024-02-01", apply_to_future=True ) # Set budget for a category group set_budget_amount( amount=2000.00, category_group_id="grp_housing", start_date="2024-02-01", apply_to_future=False ) ``` **Example prompt:** ``` Set my dining budget to $500 per month starting in February ``` ### Category Management #### `get_categories` List all transaction categories with groups and metadata. ```python get_categories() # Returns: id, name, group, icon, systemCategory, isSystemCategory, isDisabled ``` **Example prompt:** ``` List all my transaction categories ``` #### `get_category_groups` View category groups with their associated categories. ```python get_category_groups() ``` **Example prompt:** ``` Show me all category groups ``` #### `set_transaction_category` Assign a category to a transaction. ```python set_transaction_category( transaction_id="txn_123", category_id="cat_groceries", mark_reviewed=True ) ``` **Example prompt:** ``` Categorize transaction txn_123 as groceries and mark it reviewed ``` #### `bulk_categorize_transactions` Apply a category to multiple transactions at once. ```python bulk_categorize_transactions( transaction_ids=["txn_1", "txn_2", "txn_3"], category_id="cat_dining" ) ``` **Example prompt:** ``` Categorize all these Amazon transactions as shopping: txn_1, txn_2, txn_3 ``` ### Transaction Review Workflow #### `get_transactions_needing_review` Find transactions requiring attention. ```python # All transactions needing review get_transactions_needing_review(needs_review=True) # Uncategorized transactions only get_transactions_needing_review(uncategorized=True) # Transactions without notes get_transactions_needing_review(no_notes=True) # Last N days get_transactions_needing_review( needs_review=True, days=30 ) ``` **Example prompt:** ``` Show me all uncategorized transactions from the last 30 days ``` #### `update_transaction_notes` Add or update notes on transactions. ```python update_transaction_notes( transaction_id="txn_456", notes="Receipt: https://example.com/receipt.pdf" ) ``` **Example prompt:** ``` Add a note to transaction txn_456 with the receipt link ``` #### `mark_transaction_reviewed` Clear the needs_review flag. ```python mark_transaction_reviewed(transaction_id="txn_789") ``` **Example prompt:** ``` Mark transaction txn_789 as reviewed ``` ### Tag Management #### `get_tags` List all available tags with colors and usage counts. ```python get_tags() ``` **Example prompt:** ``` Show me all my transaction tags ``` #### `set_transaction_tags` Apply tags to a transaction. ```python set_transaction_tags( transaction_id="txn_123", tag_ids=["tag_business", "tag_reimbursable"] ) ``` **Example prompt:** ``` Tag transaction txn_123 as business and reimbursable ``` #### `create_tag` Create a new tag with custom name and color. ```python create_tag( name="Travel", color="#FF5733" ) ``` **Example prompt:** ``` Create a new tag called Travel with color red ``` ### Advanced Search #### `search_transactions` Comprehensive search with multiple filters. ```python search_transactions( search="Starbucks", category_ids=["cat_dining"], account_ids=["acc_checking"], tag_ids=["tag_business"], start_date="2024-01-01", end_date="2024-01-31", min_amount=5.00, max_amount=50.00 ) ``` **Example prompt:** ``` Find all Starbucks transactions tagged as business between $5 and $50 in January ``` #### `get_transaction_details` Retrieve complete details for a single transaction. ```python get_transaction_details(transaction_id="txn_456") ``` **Example prompt:** ``` Get full details for transaction txn_456 ``` #### `delete_transaction` Remove a transaction. ```python delete_transaction(transaction_id="txn_789") ``` **Example prompt:** ``` Delete transaction txn_789 ```
在 GitHub 查看
这个 SKILL.md 很大,SkillsMP 这里只预览前一段内容。 在 GitHub 查看