We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/activepieces/activepieces'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { actualBudgetAuth } from '../..';
import { createAction } from '@activepieces/pieces-framework';
import * as api from '@actual-app/api';
import { initializeAndDownloadBudget } from '../common/common';
export const getAccounts = createAction({
auth: actualBudgetAuth,
name: 'get_accounts',
displayName: 'Get Accounts',
description: 'Get your accounts',
props: {},
async run(context) {
await initializeAndDownloadBudget(api, context.auth.props)
const accounts = await api.getAccounts();
await api.shutdown();
return accounts;
},
});