Skip to main content
Glama

fluentcrm_list_automations

Retrieve marketing automation funnels from FluentCRM to view and manage automated workflows, campaigns, and customer journey sequences.

Instructions

Pobiera automatyzacje (funnels)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
searchNo

Implementation Reference

  • MCP tool handler switch case that executes fluentcrm_list_automations by calling the FluentCRMClient's listAutomations method with input arguments and formats the response as JSON text.
    case 'fluentcrm_list_automations': return { content: [{ type: 'text', text: JSON.stringify(await client.listAutomations(args || {}), null, 2) }] };
  • Core handler logic in FluentCRMClient: retrieves list of automations (funnels) via API GET request to '/funnels' endpoint with optional params.
    async listAutomations(params: any = {}) { const response = await this.apiClient.get('/funnels', { params }); return response.data; }
  • Tool registration in MCP server's listTools handler, defining name, description, and input schema for pagination and search.
    { name: 'fluentcrm_list_automations', description: 'Pobiera automatyzacje (funnels)', inputSchema: { type: 'object', properties: { page: { type: 'number' }, search: { type: 'string' }, }, }, },
  • Input schema definition allowing optional 'page' (number) for pagination and 'search' (string) for filtering automations.
    inputSchema: { type: 'object', properties: { page: { type: 'number' }, search: { type: 'string' }, }, },

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