budgeting
Personal budgeting and financial planning skill. Use when: (1) Analyzing spending patterns by category or time period, (2) Comparing budget vs actual spending, (3) Calculating savings rates, (4) Forecasting cash flow, (5) Planning tax-aware financial decisions. Tools: actual-mcp for budget/transaction data, ghostfolio-mcp for investment portfolio context. --- # Personal Budgeting ## Tool Mapping | Task | MCP Server | Key Tools | |------|-----------|-----------| | Transaction history, balances, budgets | actual-mcp | `get_transactions`, `get_accounts`, `get_budget_months` | | Category breakdowns | actual-mcp | `get_categories`, `get_category_groups` | | Investment balances and allocation | ghostfolio-mcp | `get_portfolio_summary`, `get_portfolio_positions` | | Net worth calculation | Both | Actual (cash/debt) + Ghostfolio (investments) | ## Spending Analysis ### Category Breakdown 1. Pull transactions for the target period using `get_transactions` with date range filters 2. Group by category — report both absolute amounts and percentage of total spend 3. Flag categories that exceed their budget allocation 4. Present results as a ranked table: Category | Budgeted | Actual | Variance | % of Total ### Month-over-Month Trends 1. Pull 3-6 months of transaction data 2. Compute per-category monthly totals 3. Calculate month-over-month change (absolute and percentage) 4. Flag categories with sustained increases (3+ consecutive months of growth) 5. Distinguish between recurring/fixed expenses (rent, insurance, subscriptions) and variable expenses (groceries, dining, entertainment) ### Anomaly Detection - Flag individual transactions > 2x the category's average transaction size - Flag categories where current month spend exceeds the trailing 3-month average by > 25% - Flag new payees not seen in prior months (potential new subscriptions) ## Budget vs Actual Variance Analysis ### Monthly Variance Report 1. Pull budget allocations via `get_budget_months` for the target month 2.
Changelog: Source: GitHub https://github.com/hvkshetry/StewardOS
No comments yet. Be the first one!