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 { PieceCategory } from '@activepieces/shared';
import { newSubmissionTrigger } from './lib/triggers/new-submission.trigger';
export const formspark = createPiece({
displayName: 'Formspark',
auth: PieceAuth.None(),
categories: [PieceCategory.FORMS_AND_SURVEYS],
minimumSupportedRelease: '0.36.1',
logoUrl: 'https://cdn.activepieces.com/pieces/formspark.png',
authors: ['kishanprmr'],
actions: [],
triggers: [newSubmissionTrigger],
});