@baruchiro/actual-mcp
Version:
Actual Budget MCP server exposing API functionality
30 lines • 1 kB
JavaScript
// ----------------------------
// GET PAYEES TOOL
// ----------------------------
import { successWithJson, errorFromCatch } from '../../../utils/response.js';
import { fetchAllPayees } from '../../../core/data/fetch-payees.js';
export const schema = {
name: 'get-payees',
description: 'Retrieve a list of all payees with their id, name, categoryId and transferAccountId.',
inputSchema: {
type: 'object',
description: 'This tool does not accept any arguments.',
properties: {},
additionalProperties: false,
},
};
export async function handler() {
try {
const categories = await fetchAllPayees();
const structured = categories.map((payee) => ({
id: payee.id,
name: payee.name,
transfer_acct: payee.transfer_acct || '(not a transfer payee)',
}));
return successWithJson(structured);
}
catch (err) {
return errorFromCatch(err);
}
}
//# sourceMappingURL=index.js.map