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