UNPKG

@baruchiro/actual-mcp

Version:

Actual Budget MCP server exposing API functionality

8 lines (7 loc) 274 B
// Fetches transactions and related data for get-transactions tool import { getTransactions } from "../../actual-api.js"; export class GetTransactionsDataFetcher { async fetch(accountId, start, end) { return await getTransactions(accountId, start, end); } }