Skip to main content
Glama

fluentcrm_delete_tag

Remove tags from contacts in FluentCRM marketing automation by specifying tag IDs to manage contact segmentation and organization.

Instructions

Usuwa tag z FluentCRM

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagIdYesID tagu

Implementation Reference

  • MCP tool handler in the CallToolRequestSchema switch statement that extracts tagId from arguments and calls client.deleteTag, returning the JSON response.
    case 'fluentcrm_delete_tag': return { content: [{ type: 'text', text: JSON.stringify(await client.deleteTag((args as any)?.tagId), null, 2) }] };
  • Input schema defining the required 'tagId' parameter of type number.
    inputSchema: { type: 'object', properties: { tagId: { type: 'number', description: 'ID tagu' }, }, required: ['tagId'], },
  • Tool registration in the ListTools response, 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'], }, },
  • FluentCRMClient helper method that performs the actual DELETE API request to /tags/{tagId} and returns the response data.
    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