monarch-mcp 0.3.0

Monarch Money MCP server — an agentic budgeting companion (read + categorize only)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Library facade — exposes internal modules for large (live) integration tests.
//!
//! The binary crate (`src/main.rs`) uses these modules directly. This file
//! re-exports them so `tests/live_integration.rs` can import them without
//! duplicating the module graph.

pub mod cashflow_forecast;
pub mod client;
pub mod error;
pub mod financial_overview;
pub mod goals;
pub mod inspect_transactions;
pub mod net_worth_trend;
pub mod progress_vs_goals;
pub mod recurring_scan;
pub mod spending_report;
pub mod tools;
pub mod triage;