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 { createPiece } from '@activepieces/pieces-framework';
import { renderTemplate } from './actions/renderTemplate.action';
import { PieceCategory } from '@activepieces/shared';
import { generatebannersAuth } from './src/index';
export const generatebanners = createPiece({
minimumSupportedRelease: '0.30.0',
logoUrl: 'https://cdn.activepieces.com/pieces/generatebanners.png',
authors: ['tpatel'],
categories: [PieceCategory.MARKETING],
actions: [renderTemplate],
displayName: 'GenerateBanners',
triggers: [],
auth: generatebannersAuth,
});