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, PieceAuth } from '@activepieces/pieces-framework';
import { newLead } from './lib/triggers/new-lead';
import { PieceCategory } from '@activepieces/shared';
export const poper = createPiece({
displayName: 'Poper',
auth: PieceAuth.None(),
minimumSupportedRelease: '0.30.0',
categories: [PieceCategory.MARKETING],
description:
'AI Driven Pop-up Builder that can convert visitors into customers,increase subscriber count, and skyrocket sales.',
logoUrl: 'https://cdn.activepieces.com/pieces/poper.png',
authors: ['thirstycode'],
actions: [],
triggers: [newLead],
});