Skip to main content
Glama

fluentcrm_resume_campaign

Resume a paused FluentCRM marketing campaign to continue sending emails and automated workflows to your contacts.

Instructions

Wznawia kampanię

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
campaignIdYesID kampanii

Implementation Reference

  • MCP CallTool handler case for 'fluentcrm_resume_campaign' that extracts campaignId from args and calls client.resumeCampaign
    case 'fluentcrm_resume_campaign': return { content: [{ type: 'text', text: JSON.stringify(await client.resumeCampaign((args as any)?.campaignId), null, 2) }] };
  • Input schema definition for the tool, requiring a numeric campaignId
    inputSchema: { type: 'object', properties: { campaignId: { type: 'number', description: 'ID kampanii' }, }, required: ['campaignId'], },
  • Registration of the tool in ListTools handler, including name, description, and input schema
    name: 'fluentcrm_resume_campaign', description: 'Wznawia kampanię', inputSchema: { type: 'object', properties: { campaignId: { type: 'number', description: 'ID kampanii' }, }, required: ['campaignId'], }, },
  • FluentCRMClient helper method implementing the resume campaign API call via POST to /campaigns/{campaignId}/resume
    async resumeCampaign(campaignId: number) { const response = await this.apiClient.post(`/campaigns/${campaignId}/resume`); return response.data; }

Latest Blog Posts

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/netflyapp/fluentcrm-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server