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 { Property } from '@activepieces/pieces-framework';
export const twitterCommon = {
text: Property.LongText({
displayName: 'Text',
description: 'The text of the tweet',
required: true,
}),
image_1: Property.File({
displayName: 'Media (1)',
description:
'An image, video or GIF url or base64 to attach to the tweet',
required: false,
}),
image_2: Property.File({
displayName: 'Media (2)',
description:
'An image, video or GIF url or base64 to attach to the tweet',
required: false,
}),
image_3: Property.File({
displayName: 'Media (3)',
description:
'An image, video or GIF url or base64 to attach to the tweet',
required: false,
}),
};