Skip to main content
Glama

fluentcrm_create_list

Create a new contact list in FluentCRM to organize subscribers for targeted email marketing campaigns.

Instructions

Tworzy nową listę w FluentCRM

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesNazwa listy
slugNoSlug listy
descriptionNoOpis listy

Implementation Reference

  • Core implementation of the tool logic: creates a new list via POST to FluentCRM /lists API endpoint using the apiClient.
    async createList(data: { title: string; slug?: string; description?: string; }) { const response = await this.apiClient.post('/lists', data); return response.data;
  • Tool registration in the MCP server's tools list, including name, description, and input schema.
    { name: 'fluentcrm_create_list', description: 'Tworzy nową listę w FluentCRM', inputSchema: { type: 'object', properties: { title: { type: 'string', description: 'Nazwa listy' }, slug: { type: 'string', description: 'Slug listy' }, description: { type: 'string', description: 'Opis listy' }, }, required: ['title'], }, },
  • MCP request handler switch case that delegates to the client.createList method and formats the response.
    case 'fluentcrm_create_list': return { content: [{ type: 'text', text: JSON.stringify(await client.createList(args as any), null, 2) }] };
  • Input schema definition for the fluentcrm_create_list tool.
    inputSchema: { type: 'object', properties: { title: { type: 'string', description: 'Nazwa listy' }, slug: { type: 'string', description: 'Slug listy' }, description: { type: 'string', description: 'Opis listy' }, }, 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