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 { zagomailAuth } from '../../';
import { createAction } from '@activepieces/pieces-framework';
import { zagoMailApiService } from '../common/request';
import { campaignUid } from '../common/props';
export const getCampaignDetails = createAction({
auth: zagomailAuth,
name: 'getCampaignDetails',
displayName: 'Get Campaign',
description: 'Gets the details of a campaign.',
props: {
campaignUid: campaignUid,
},
async run({propsValue, auth}) {
const campaignUid = propsValue.campaignUid;
return await zagoMailApiService.getCampaignDetails(auth, campaignUid)
},
});