Skip to main content
Glama

fluentcrm_delete_contact

Remove a contact from FluentCRM by specifying their subscriber ID to manage your marketing automation contact list.

Instructions

Usuwa kontakt z FluentCRM

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subscriberIdYesID kontaktu do usunięcia

Implementation Reference

  • Core handler implementation in FluentCRMClient class that performs the DELETE API request to remove the contact by subscriber ID.
    async deleteContact(subscriberId: number) { const response = await this.apiClient.delete(`/subscribers/${subscriberId}`); return response.data; }
  • MCP server tool dispatch handler that extracts subscriberId from args and calls client.deleteContact.
    case 'fluentcrm_delete_contact': return { content: [{ type: 'text', text: JSON.stringify(await client.deleteContact((args as any)?.subscriberId), null, 2) }] };
  • Tool registration in the ListTools response, including name, description, and input schema.
    { 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 requiring subscriberId as number.
    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