get_dashboard
Retrieve analytics dashboard with conversation statistics, response times, category breakdowns, daily trends, and team activity monitoring for platform performance tracking.
Instructions
Get analytics dashboard with conversation stats, response times, breakdowns by category/status/priority/app, daily trends, and team activity.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Time period: 7d, 30d, 90d, all (default: 30d) |
Implementation Reference
- index.js:457-462 (handler)The handler case for "get_dashboard" which calls the analytics API endpoint.
case "get_dashboard": { const query = {}; if (args?.period) query.period = args.period; result = await apiRequest("GET", "/v1/analytics/dashboard", { query }); break; } - index.js:243-255 (registration)The definition/registration of the "get_dashboard" tool, including its input schema and description.
name: "get_dashboard", description: "Get analytics dashboard with conversation stats, response times, breakdowns by category/status/priority/app, daily trends, and team activity.", inputSchema: { type: "object", properties: { period: { type: "string", description: "Time period: 7d, 30d, 90d, all (default: 30d)", }, }, }, },