Skip to main content
Glama

fluentcrm_delete_list

Remove a contact list from your FluentCRM marketing automation system by specifying the list ID to maintain organized contact management.

Instructions

Usuwa listę z FluentCRM

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
listIdYesID listy

Implementation Reference

  • Core handler function in FluentCRMClient that deletes a list via the FluentCRM REST API DELETE /lists/{listId}.
    async deleteList(listId: number) { const response = await this.apiClient.delete(`/lists/${listId}`); return response.data; }
  • MCP server dispatch handler that calls the client.deleteList method and formats the response.
    case 'fluentcrm_delete_list': return { content: [{ type: 'text', text: JSON.stringify(await client.deleteList((args as any)?.listId), null, 2) }] };
  • Tool registration entry in the MCP tools list, including name, description, and input schema.
    { name: 'fluentcrm_delete_list', description: 'Usuwa listę z FluentCRM', inputSchema: { type: 'object', properties: { listId: { type: 'number', description: 'ID listy' }, }, required: ['listId'], }, },
  • Input schema defining the required listId parameter of type number.
    inputSchema: { type: 'object', properties: { listId: { type: 'number', description: 'ID listy' }, }, required: ['listId'], },

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