Skip to main content
Glama

fluentcrm_list_lists

Retrieve all contact lists from FluentCRM to manage email marketing segments and organize subscribers for targeted campaigns.

Instructions

Pobiera wszystkie listy z FluentCRM

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core handler function in FluentCrmClient that retrieves lists from the FluentCRM API via GET /lists endpoint.
    async listLists(params: any = {}) { const response = await this.apiClient.get('/lists', { params }); return response.data; }
  • Registration of the tool in the MCP server's tools list, defining name, description, and empty input schema.
    { name: 'fluentcrm_list_lists', description: 'Pobiera wszystkie listy z FluentCRM', inputSchema: { type: 'object', properties: {}, }, },
  • Dispatch handler in MCP server's CallToolRequestSchema that calls client.listLists() and returns JSON-formatted response.
    case 'fluentcrm_list_lists': return { content: [{ type: 'text', text: JSON.stringify(await client.listLists(), 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