Skip to main content
Glama

fluentcrm_create_tag

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

Instructions

Tworzy nowy tag w FluentCRM

Input Schema

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

Implementation Reference

  • Core handler function in FluentCRMClient that executes the tool logic: POST request to /tags endpoint with title, slug, description.
    async createTag(data: {
      title: string;
      slug?: string;
      description?: string;
    }) {
      const response = await this.apiClient.post('/tags', data);
      return response.data;
    }
  • MCP server request handler dispatch case that invokes the client.createTag method with tool arguments.
    case 'fluentcrm_create_tag':
      return { content: [{ type: 'text', text: JSON.stringify(await client.createTag(args as any), null, 2) }] };
  • Tool registration in the MCP tools list, including 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 validating tool arguments: requires title, optional 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