get_goal_history
Retrieve monthly progress snapshots for financial goals, showing current and target amounts, daily data, and contributions. Filter by goal ID or month range for detailed tracking.
Instructions
Get monthly progress snapshots for financial goals. Returns current_amount, target_amount, daily data points, and contribution records per month. Filter by goal_id or month range (YYYY-MM). Cache-only: no live-mode (--live-reads) counterpart exists because Copilot's GraphQL endpoint does not expose goal data, so this tool always returns cached LevelDB data regardless of the --live-reads flag.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goal_id | No | Filter by goal ID | |
| start_month | No | Start month (YYYY-MM) | |
| end_month | No | End month (YYYY-MM) | |
| limit | No | Maximum number of results (default: 100, max: 10000) | |
| offset | No | Number of results to skip for pagination (default: 0) |