Skip to main content
Glama

fluentcrm_delete_tag

Remove a tag from FluentCRM marketing automation by specifying the tag ID to manage contact organization and segmentation.

Instructions

Usuwa tag z FluentCRM

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagIdYesID tagu

Implementation Reference

  • MCP tool handler case that executes fluentcrm_delete_tag by calling client.deleteTag with the provided tagId from arguments.
    case 'fluentcrm_delete_tag': return { content: [{ type: 'text', text: JSON.stringify(await client.deleteTag((args as any)?.tagId), null, 2) }] };
  • Input schema definition for fluentcrm_delete_tag tool, requiring a numeric tagId.
    inputSchema: { type: 'object', properties: { tagId: { type: 'number', description: 'ID tagu' }, }, required: ['tagId'], },
  • Registration of the fluentcrm_delete_tag tool in the MCP server's tools list, including name, description, and input schema.
    { name: 'fluentcrm_delete_tag', description: 'Usuwa tag z FluentCRM', inputSchema: { type: 'object', properties: { tagId: { type: 'number', description: 'ID tagu' }, }, required: ['tagId'], }, },
  • Core helper method in FluentCRMClient that performs the actual API deletion of a tag by ID via DELETE /tags/{tagId}.
    async deleteTag(tagId: number) { const response = await this.apiClient.delete(`/tags/${tagId}`); 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