Skip to main content
Glama

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
NameRequiredDescriptionDefault
periodNoTime period: 7d, 30d, 90d, all (default: 30d)

Implementation Reference

  • 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)",
          },
        },
      },
    },

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/Stig-Johnny/cutie-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server