Skip to main content
Glama

fluentcrm_custom_fields

Retrieve custom fields from FluentCRM to access and manage additional contact information beyond standard fields for enhanced marketing automation.

Instructions

Pobiera pola niestandardowe

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core handler function that implements the tool logic by fetching custom fields via GET /custom-fields from the FluentCRM API.
    async listCustomFields() { const response = await this.apiClient.get('/custom-fields'); return response.data; }
  • MCP server switch case handler that invokes the client.listCustomFields() method and returns the JSON-formatted result.
    case 'fluentcrm_custom_fields': return { content: [{ type: 'text', text: JSON.stringify(await client.listCustomFields(), null, 2) }] };
  • Registration of the tool in the MCP server's ListTools response, defining name, description, and empty input schema.
    { name: 'fluentcrm_custom_fields', description: 'Pobiera pola niestandardowe', inputSchema: { type: 'object', properties: {}, }, },
  • Input schema for the tool, which accepts no parameters (empty properties).
    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