Skip to main content
Glama

fluentcrm_list_contacts

Retrieve and manage contact lists from FluentCRM marketing automation with pagination and search capabilities for email or name queries.

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 tool handler case that executes the tool by calling FluentCRMClient.listContacts with input args and returns JSON response.
    case 'fluentcrm_list_contacts':
      return { content: [{ type: 'text', text: JSON.stringify(await client.listContacts(args || {}), null, 2) }] };
  • Input schema defining optional parameters: page, per_page, search for listing contacts.
    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 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' },
        },
      },
    },
  • Core implementation: Calls FluentCRM REST API /subscribers endpoint with 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