Skip to main content
Glama

fluentcrm_pause_campaign

Pause a running FluentCRM email campaign to temporarily stop sending emails to contacts, allowing for campaign adjustments or troubleshooting.

Instructions

Wstrzymuje kampanię

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
campaignIdYesID kampanii

Implementation Reference

  • Core handler function that pauses a FluentCRM campaign by sending a POST request to the /campaigns/{campaignId}/pause API endpoint.
    async pauseCampaign(campaignId: number) {
      const response = await this.apiClient.post(`/campaigns/${campaignId}/pause`);
      return response.data;
    }
  • Tool registration entry defining the name, description, and input schema for fluentcrm_pause_campaign.
      name: 'fluentcrm_pause_campaign',
      description: 'Wstrzymuje kampanię',
      inputSchema: {
        type: 'object',
        properties: {
          campaignId: { type: 'number', description: 'ID kampanii' },
        },
        required: ['campaignId'],
      },
    },
  • Input schema defining the required campaignId parameter of type number.
    inputSchema: {
      type: 'object',
      properties: {
        campaignId: { type: 'number', description: 'ID kampanii' },
      },
      required: ['campaignId'],
    },
  • MCP server request handler case that dispatches to the client.pauseCampaign method.
    case 'fluentcrm_pause_campaign':
      return { content: [{ type: 'text', text: JSON.stringify(await client.pauseCampaign((args as any)?.campaignId), null, 2) }] };

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