Skip to main content
Glama
mikusnuz

umami-mcp

get_report

Retrieve detailed analytics data from a saved report by providing its unique identifier.

Instructions

Get details of a specific saved report

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reportIdYesReport UUID

Implementation Reference

  • The tool "get_report" is defined and implemented as a handler inside `src/tools/reports.ts`, using the `server.tool` MCP method.
    server.tool(
      "get_report",
      "Get details of a specific saved report",
      {
        reportId: z.string().describe("Report UUID"),
      },
      async ({ reportId }) => {
        const data = await client.call("GET", `/api/reports/${reportId}`);
        return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
      }
    );

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/mikusnuz/umami-mcp'

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