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 { tallyFormsNewSubmission } from './lib/triggers/new-submission';
export const tally = createPiece({
displayName: 'Tally',
description: 'Receive form submissions from Tally forms',
auth: PieceAuth.None(),
minimumSupportedRelease: '0.27.1',
logoUrl: 'https://cdn.activepieces.com/pieces/tally.png',
categories: [PieceCategory.FORMS_AND_SURVEYS],
authors: ["kishanprmr","abuaboud"],
actions: [],
triggers: [tallyFormsNewSubmission],
});