Skip to main content
Glama

mcp-google-sheets

concat.ts727 B
import { Property, createAction } from '@activepieces/pieces-framework'; export const concat = createAction({ description: 'Concatenate two or more texts', displayName: 'Concatenate', name: 'concat', errorHandlingOptions: { continueOnFailure: { hide: true, }, retryOnFailure: { hide: true, }, }, props: { texts: Property.Array({ displayName: 'Texts', required: true, }), separator: Property.ShortText({ displayName: 'Separator', description: 'The text that separates the texts you want to concatenate', required: false, }), }, run: async (ctx) => { return (ctx.propsValue.texts ?? []).join(ctx.propsValue.separator ?? ''); }, });

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