Skip to main content
Glama

fluentcrm_create_tag

Create new tags in FluentCRM to organize and categorize contacts for targeted marketing campaigns and automation workflows.

Instructions

Tworzy nowy tag w FluentCRM

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
descriptionNoOpis tagu
slugNoSlug tagu (np. "aw-progress-75")
titleYesNazwa tagu (np. "AW-progress-75")

Implementation Reference

  • Core handler function in FluentCRMClient that creates a new tag by making a POST request to the /tags endpoint of the FluentCRM API.
    async createTag(data: { title: string; slug?: string; description?: string; }) { const response = await this.apiClient.post('/tags', data); return response.data; }
  • MCP tool dispatch handler in the CallToolRequestSchema switch statement that invokes client.createTag with the provided arguments and formats the response.
    case 'fluentcrm_create_tag': return { content: [{ type: 'text', text: JSON.stringify(await client.createTag(args as any), null, 2) }] };
  • Tool registration entry in the ListToolsRequestSchema handler, defining the tool name, description, and input schema.
    { name: 'fluentcrm_create_tag', description: 'Tworzy nowy tag w FluentCRM', inputSchema: { type: 'object', properties: { title: { type: 'string', description: 'Nazwa tagu (np. "AW-progress-75")' }, slug: { type: 'string', description: 'Slug tagu (np. "aw-progress-75")' }, description: { type: 'string', description: 'Opis tagu' }, }, required: ['title'], }, },
  • Input schema definition for the fluentcrm_create_tag tool, specifying parameters like title (required), slug, and description.
    inputSchema: { type: 'object', properties: { title: { type: 'string', description: 'Nazwa tagu (np. "AW-progress-75")' }, slug: { type: 'string', description: 'Slug tagu (np. "aw-progress-75")' }, description: { type: 'string', description: 'Opis tagu' }, }, required: ['title'], }, },

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