Skip to main content
Glama

mcp-google-sheets

send-sms.ts3.17 kB
import { createAction, Property } from '@activepieces/pieces-framework'; import { HttpMethod } from '@activepieces/pieces-common'; import { callClickSendApi } from '../common'; import { clicksendAuth } from '../..'; export const clicksendSendSmsAction = createAction({ auth: clicksendAuth, name: 'send_sms', description: 'Send one or more SMS messages.', displayName: 'Send SMS', props: { messages: Property.Array({ displayName: 'Messages', required: true, properties: { to: Property.ShortText({ description: 'The phone number (with country code, e.g., +1234567890)', displayName: 'To', required: true, }), body: Property.ShortText({ description: 'The body of the message to send', displayName: 'Message Body', required: true, }), from: Property.ShortText({ description: 'The sender name or number (must be approved in ClickSend).', displayName: 'From', required: false, }), custom_string: Property.ShortText({ description: 'A custom string for tracking the message', displayName: 'Custom String', required: false, }), country: Property.ShortText({ description: 'Country code (for compliance)', displayName: 'Country', required: false, }), message_expiry: Property.Number({ description: 'How long (in minutes) the message is valid for.', displayName: 'Message Expiry (minutes)', required: false, }), priority: Property.Checkbox({ description: 'Send as high priority', displayName: 'Priority', required: false, }) }, }), }, async run(context) { const messages = (context.propsValue.messages as Message[]) ?? []; if (!Array.isArray(messages) || messages.length === 0) { throw new Error('At least one message must be provided.'); } const username = context.auth.username; const password = context.auth.password; // Map messages to ClickSend API format, ensuring all optional fields are included if provided const messageData = { messages: messages.map((msg: Message) => { const { to, body, from, custom_string, country, message_expiry, priority, } = msg; return { to, body, ...(from && { from }), ...(custom_string && { custom_string }), ...(country && { country }), ...(message_expiry && { message_expiry }), ...(priority !== undefined ? { priority } : {}), }; }), }; const response = await callClickSendApi({ method: HttpMethod.POST, path: '/sms/send', username, password, body: messageData, }); return response.body; }, }); type Message = { to: string; body: string; from?: string; custom_string?: string; country?: string; message_expiry?: number; priority?: boolean; list_id?: number; };

MCP directory API

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