fluentcrm_dashboard_stats
Retrieve dashboard statistics to monitor marketing automation performance and track key metrics within FluentCRM.
Instructions
Pobiera statystyki dashboarda
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/fluentcrm-mcp-server.ts:999-1000 (handler)MCP tool handler that executes the tool by calling client.getDashboardStats() and formats the response as MCP content.case 'fluentcrm_dashboard_stats': return { content: [{ type: 'text', text: JSON.stringify(await client.getDashboardStats(), null, 2) }] };
- src/fluentcrm-mcp-server.ts:921-927 (registration)Registers the tool with MCP server including name, description, and input schema.name: 'fluentcrm_dashboard_stats', description: 'Pobiera statystyki dashboarda', inputSchema: { type: 'object', properties: {}, }, },
- src/fluentcrm-mcp-server.ts:923-926 (schema)Input schema definition for the tool (no required parameters).inputSchema: { type: 'object', properties: {}, },
- src/fluentcrm-mcp-server.ts:453-456 (helper)Core implementation that fetches dashboard statistics from the FluentCRM API.async getDashboardStats() { const response = await this.apiClient.get('/reports/dashboard-stats'); return response.data; }