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
| Name | Required | Description | Default |
|---|---|---|---|
| reportId | Yes | Report UUID to delete |
Implementation Reference
- src/tools/reports.ts:89-99 (handler)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.` }] }; } );