Skip to main content
Glama

fluentcrm_create_automation

Create new marketing automation workflows in FluentCRM by defining triggers and actions to automatically engage contacts based on specific behaviors or conditions.

Instructions

Tworzy nową automatyzację

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
descriptionNo
titleYesNazwa automatyzacji
triggerYesTyp triggera

Implementation Reference

  • Core implementation of the fluentcrm_create_automation tool. This method in the FluentCRMClient class sends a POST request to the '/funnels' endpoint with the provided data to create a new automation.
    async createAutomation(data: any) { const response = await this.apiClient.post('/funnels', data); return response.data; }
  • Tool registration in the MCP server's tools list, defining the name, description, and input schema.
    { name: 'fluentcrm_create_automation', description: 'Tworzy nową automatyzację', inputSchema: { type: 'object', properties: { title: { type: 'string', description: 'Nazwa automatyzacji' }, description: { type: 'string' }, trigger: { type: 'string', description: 'Typ triggera' }, }, required: ['title', 'trigger'], }, },
  • MCP server request handler switch case that calls the client.createAutomation method and returns the JSON response.
    case 'fluentcrm_create_automation': return { content: [{ type: 'text', text: JSON.stringify(await client.createAutomation(args as any), null, 2) }] };
  • Input schema definition for the tool, specifying required fields: title and trigger.
    inputSchema: { type: 'object', properties: { title: { type: 'string', description: 'Nazwa automatyzacji' }, description: { type: 'string' }, trigger: { type: 'string', description: 'Typ triggera' }, }, required: ['title', 'trigger'], },

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