Skip to main content
Glama

fluentcrm_delete_contact

Remove a contact from FluentCRM marketing automation by specifying the subscriber ID to delete contact data from the WordPress plugin.

Instructions

Usuwa kontakt z FluentCRM

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subscriberIdYesID kontaktu do usunięcia

Implementation Reference

  • MCP tool handler case that executes the delete contact tool by calling the FluentCRMClient's deleteContact method with the provided subscriberId.
    case 'fluentcrm_delete_contact': return { content: [{ type: 'text', text: JSON.stringify(await client.deleteContact((args as any)?.subscriberId), null, 2) }] };
  • Core helper method in FluentCRMClient that performs the actual API deletion of a contact by subscriber ID.
    async deleteContact(subscriberId: number) { const response = await this.apiClient.delete(`/subscribers/${subscriberId}`); return response.data; }
  • Tool registration in the listTools response, including name, description, and input schema definition.
    { name: 'fluentcrm_delete_contact', description: 'Usuwa kontakt z FluentCRM', inputSchema: { type: 'object', properties: { subscriberId: { type: 'number', description: 'ID kontaktu do usunięcia' }, }, required: ['subscriberId'], }, },
  • Input schema definition for the fluentcrm_delete_contact tool, specifying required subscriberId parameter.
    inputSchema: { type: 'object', properties: { subscriberId: { type: 'number', description: 'ID kontaktu do usunięcia' }, }, 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