Skip to main content
Glama

fluentcrm_list_contacts

Retrieve and manage contact lists from FluentCRM marketing automation platform. Search contacts by email or name, and control pagination for large datasets.

Instructions

Pobiera listę wszystkich kontaktów z FluentCRM

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoNumer strony (default: 1)
per_pageNoIlość rekordów na stronę (default: 10)
searchNoSzukaj po emailu/imieniu

Implementation Reference

  • MCP server tool handler that executes the tool by calling FluentCRMClient.listContacts with input arguments and formats the response as MCP content.
    case 'fluentcrm_list_contacts': return { content: [{ type: 'text', text: JSON.stringify(await client.listContacts(args || {}), null, 2) }] };
  • Input schema defining optional parameters for pagination (page, per_page) and search.
    inputSchema: { type: 'object', properties: { page: { type: 'number', description: 'Numer strony (default: 1)' }, per_page: { type: 'number', description: 'Ilość rekordów na stronę (default: 10)' }, search: { type: 'string', description: 'Szukaj po emailu/imieniu' }, }, },
  • Tool registration in the MCP server's listTools response, including name, description, and input schema.
    { name: 'fluentcrm_list_contacts', description: 'Pobiera listę wszystkich kontaktów z FluentCRM', inputSchema: { type: 'object', properties: { page: { type: 'number', description: 'Numer strony (default: 1)' }, per_page: { type: 'number', description: 'Ilość rekordów na stronę (default: 10)' }, search: { type: 'string', description: 'Szukaj po emailu/imieniu' }, }, }, },
  • FluentCRMClient method implementing the core logic: GET request to /subscribers endpoint with query params and returns the data.
    async listContacts(params: any = {}) { const response = await this.apiClient.get('/subscribers', { params }); return response.data; }

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