Skip to main content
Glama

fluentcrm_list_webhooks

Retrieve webhooks from FluentCRM to monitor and manage automated data exchange between your marketing platform and external applications.

Instructions

Pobiera webhooks

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • MCP tool handler switch case that executes the fluentcrm_list_webhooks tool by calling client.listWebhooks() and formatting the response as MCP content.
    case 'fluentcrm_list_webhooks': return { content: [{ type: 'text', text: JSON.stringify(await client.listWebhooks(), null, 2) }] };
  • FluentCRMClient method implementing the core logic: makes GET request to /webhooks endpoint and returns the data.
    async listWebhooks(params: any = {}) { const response = await this.apiClient.get('/webhooks', { params }); return response.data; }
  • Tool registration in ListToolsRequest handler, including name, description, and empty input schema (no parameters required).
    name: 'fluentcrm_list_webhooks', description: 'Pobiera webhooks', inputSchema: { type: 'object', properties: {}, }, },
  • Input schema for the tool: empty object properties, indicating no input parameters are required.
    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