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 { sendEmail } from './lib/actions/send-email';
import { PieceCategory } from '@activepieces/shared';
export const azureCommunicationServiceAuth = PieceAuth.SecretText({
displayName: 'Connection string',
required: true,
});
export const azureCommunicationServices = createPiece({
displayName: 'Azure Communication Services',
description: 'Communication services from Microsoft Azure',
auth: azureCommunicationServiceAuth,
minimumSupportedRelease: '0.30.0',
logoUrl:
'https://cdn.activepieces.com/pieces/azure-communication-services.png',
categories: [PieceCategory.COMMUNICATION, PieceCategory.MARKETING],
authors: ['matthieu-lombard'],
actions: [sendEmail],
triggers: [],
});