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 { createAction } from '@activepieces/pieces-framework';
import { makeClient, pastefyCommon } from '../common';
import { pastefyAuth } from '../..';
export default createAction({
auth: pastefyAuth,
name: 'get_folder_hierarchy',
displayName: 'Get Folder Hierarchy',
description: 'Retrieves a hierarchy of all folders',
props: {
parent_id: pastefyCommon.folder_id(false, 'Start Folder'),
},
async run(context) {
const client = makeClient(context.auth, context.propsValue);
const hierarchy = await client.getFolderHierarchy(
context.propsValue.parent_id
);
return hierarchy;
},
});