fluentcrm_dashboard_stats
Retrieve dashboard statistics for FluentCRM marketing automation to monitor campaign performance, contact metrics, and automation progress.
Instructions
Pobiera statystyki dashboarda
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/fluentcrm-mcp-server.ts:453-456 (handler)Core implementation of the tool logic: fetches dashboard statistics from FluentCRM REST API endpoint '/reports/dashboard-stats'.async getDashboardStats() { const response = await this.apiClient.get('/reports/dashboard-stats'); return response.data; }
- src/fluentcrm-mcp-server.ts:999-1000 (handler)MCP server tool dispatch handler that invokes the client.getDashboardStats() method and returns JSON-formatted response.case 'fluentcrm_dashboard_stats': return { content: [{ type: 'text', text: JSON.stringify(await client.getDashboardStats(), null, 2) }] };
- src/fluentcrm-mcp-server.ts:921-927 (registration)Tool registration entry in the ListTools response, defining name, description, and input schema (no parameters required).name: 'fluentcrm_dashboard_stats', description: 'Pobiera statystyki dashboarda', inputSchema: { type: 'object', properties: {}, }, },
- src/fluentcrm-mcp-server.ts:924-926 (schema)Input schema for the tool: empty object (no input parameters).type: 'object', properties: {}, },