actual-mcp
Version:
Actual Budget MCP server exposing API functionality
18 lines • 393 B
TypeScript
export interface GetTransactionsArgs {
accountId: string;
startDate?: string;
endDate?: string;
minAmount?: number;
maxAmount?: number;
category?: string;
payee?: string;
limit?: number;
}
export interface MappedTransaction {
date: string;
payee: string;
category: string;
amount: string;
notes: string;
}
//# sourceMappingURL=types.d.ts.map