Skip to main content
Glama

fluentcrm_custom_fields

Retrieve custom fields from FluentCRM to extend contact data and personalize marketing automation workflows.

Instructions

Pobiera pola niestandardowe

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • MCP server tool handler switch case for 'fluentcrm_custom_fields' that invokes the FluentCRMClient's listCustomFields method and returns the JSON-stringified result as text content.
    case 'fluentcrm_custom_fields': return { content: [{ type: 'text', text: JSON.stringify(await client.listCustomFields(), null, 2) }] };
  • Registration of the 'fluentcrm_custom_fields' tool in the ListTools response, including name, description, and empty input schema.
    name: 'fluentcrm_custom_fields', description: 'Pobiera pola niestandardowe', inputSchema: { type: 'object', properties: {}, }, },
  • Input schema definition for the 'fluentcrm_custom_fields' tool, which accepts an empty object (no parameters required).
    inputSchema: { type: 'object', properties: {}, },
  • FluentCRMClient helper method that fetches the list of custom fields by making a GET request to the '/custom-fields' API endpoint.
    async listCustomFields() { const response = await this.apiClient.get('/custom-fields'); 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