Skip to main content
Glama

fluentcrm_get_contact

Retrieve contact details from FluentCRM using subscriber ID to access customer information for marketing automation workflows.

Instructions

Pobiera szczegóły konkretnego kontaktu

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subscriberIdYesID kontaktu

Implementation Reference

  • Core handler function that executes the API call to retrieve specific contact details by subscriber ID from FluentCRM.
    async getContact(subscriberId: number) { const response = await this.apiClient.get(`/subscribers/${subscriberId}`); return response.data; }
  • MCP tool dispatch handler that extracts subscriberId from arguments and calls the core getContact method.
    case 'fluentcrm_get_contact': return { content: [{ type: 'text', text: JSON.stringify(await client.getContact((args as any)?.subscriberId), null, 2) }] };
  • Registers the 'fluentcrm_get_contact' tool with the MCP server, including description and input schema.
    name: 'fluentcrm_get_contact', description: 'Pobiera szczegóły konkretnego kontaktu', inputSchema: { type: 'object', properties: { subscriberId: { type: 'number', description: 'ID kontaktu' }, }, required: ['subscriberId'], }, },
  • Defines the input schema for the tool: requires subscriberId as number.
    inputSchema: { type: 'object', properties: { subscriberId: { type: 'number', description: 'ID kontaktu' }, }, required: ['subscriberId'], },

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