UNPKG

@baruchiro/actual-mcp

Version:

Actual Budget MCP server exposing API functionality

8 lines (7 loc) 318 B
export class MonthlySummaryInputParser { parse(args) { const months = typeof args.months === "number" && args.months > 0 ? args.months : 3; const accountId = typeof args.accountId === "string" && args.accountId.length > 0 ? args.accountId : undefined; return { months, accountId }; } }