We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/eldoonreval/activepieces'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { createAction, Property } from '@activepieces/pieces-framework';
import { getConversationContent, timeoutProp } from '../common';
import { dustAuth, DustAuthType } from '../..';
export const getConversation = createAction({
name: 'getConversation',
displayName: 'Get existing conversation',
description: 'Get an existing conversation',
auth: dustAuth,
props: {
conversationSid: Property.ShortText({
displayName: 'Conversation sID',
required: true,
}),
timeout: timeoutProp,
},
async run({ auth, propsValue }) {
return await getConversationContent(
propsValue.conversationSid,
propsValue.timeout,
auth as DustAuthType
);
},
});