Skip to main content
Glama

fluentcrm_list_automations

Retrieve marketing automation funnels from FluentCRM to manage workflows, filter by search terms, and navigate through pages for campaign oversight.

Instructions

Pobiera automatyzacje (funnels)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
searchNo

Implementation Reference

  • Core handler function in FluentCRMClient that executes the tool logic: GET request to '/funnels' API endpoint with optional params (page, search).
    async listAutomations(params: any = {}) { const response = await this.apiClient.get('/funnels', { params }); return response.data; }
  • Registration of the tool in the MCP server's tools list, including name, description, and input schema.
    { name: 'fluentcrm_list_automations', description: 'Pobiera automatyzacje (funnels)', inputSchema: { type: 'object', properties: { page: { type: 'number' }, search: { type: 'string' }, }, }, },
  • MCP server dispatch handler that calls the client.listAutomations method and formats the response.
    case 'fluentcrm_list_automations': return { content: [{ type: 'text', text: JSON.stringify(await client.listAutomations(args || {}), null, 2) }] };
  • Input schema definition for the tool: optional page (number) and search (string).
    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