Skip to main content
Glama
mikusnuz

umami-mcp

delete_report

Remove a saved analytics report by specifying its unique identifier to manage data storage and maintain report organization.

Instructions

Delete a saved report

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reportIdYesReport UUID to delete

Implementation Reference

  • Implementation and registration of the 'delete_report' tool in src/tools/reports.ts.
    server.tool(
      "delete_report",
      "Delete a saved report",
      {
        reportId: z.string().describe("Report UUID to delete"),
      },
      async ({ reportId }) => {
        await client.call("DELETE", `/api/reports/${reportId}`);
        return { content: [{ type: "text", text: `Report ${reportId} deleted successfully.` }] };
      }
    );

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