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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/fluentcrm-mcp-server.ts:995-996 (handler)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) }] };
- src/fluentcrm-mcp-server.ts:284-287 (helper)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; }
- src/fluentcrm-mcp-server.ts:795-801 (registration)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: {}, }, },
- src/fluentcrm-mcp-server.ts:797-800 (schema)Input schema for the tool: empty object properties, indicating no input parameters are required.inputSchema: { type: 'object', properties: {}, },