lunchmoney-mcp

by leafeye
Verified

get-budget-summary

Get budget summary for a specific time period

Input Schema

NameRequiredDescriptionDefault
end_dateYesEnd date (YYYY-MM-DD, should be end of month)
start_dateYesStart date (YYYY-MM-DD, should be start of month)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "end_date": { "description": "End date (YYYY-MM-DD, should be end of month)", "type": "string" }, "start_date": { "description": "Start date (YYYY-MM-DD, should be start of month)", "type": "string" } }, "required": [ "start_date", "end_date" ], "type": "object" }