UNPKG

actual-mcp

Version:

Actual Budget MCP server exposing API functionality

8 lines 356 B
// Fetches transactions and related data for get-transactions tool import { fetchTransactionsForAccount } from '../../core/data/fetch-transactions.js'; export class GetTransactionsDataFetcher { async fetch(accountId, start, end) { return await fetchTransactionsForAccount(accountId, start, end); } } //# sourceMappingURL=data-fetcher.js.map