Skip to main content
Glama

fluentcrm_list_email_templates

Retrieve email templates from FluentCRM to use in marketing campaigns and communications.

Instructions

Pobiera szablony email

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Tool registration in the MCP tools list, including name, description, and input schema (no parameters required).
    name: 'fluentcrm_list_email_templates', description: 'Pobiera szablony email', inputSchema: { type: 'object', properties: {}, }, },
  • MCP server request handler for tool calls. Matches the tool name and delegates execution to client.listEmailTemplates(), formatting the result as JSON text response.
    case 'fluentcrm_list_email_templates': return { content: [{ type: 'text', text: JSON.stringify(await client.listEmailTemplates(), null, 2) }] };
  • Core implementation in FluentCRMClient class: makes a GET request to the '/email-templates' API endpoint and returns the data.
    async listEmailTemplates(params: any = {}) { const response = await this.apiClient.get('/email-templates', { params }); return response.data; }
  • Input schema definition: empty object (no input parameters).
    inputSchema: { type: 'object', properties: {}, }, },

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