Raygun MCP Server

Official

get_page_metrics_histogram

Analyze page performance with histogram metrics for load times, paint events, and interaction delays using Raygun MCP Server. Filter by page identifiers and specify time ranges for detailed insights.

Instructions

Get histogram metrics for pages

Input Schema

NameRequiredDescriptionDefault
applicationIdentifierYes
endYes
filterNoCase-sensitive filter in the format 'pageIdentifier = abc123' or 'pageIdentifier IN (abc123, def456)'
metricsYes
startYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "applicationIdentifier": { "type": "string" }, "end": { "format": "date-time", "type": "string" }, "filter": { "description": "Case-sensitive filter in the format 'pageIdentifier = abc123' or 'pageIdentifier IN (abc123, def456)'", "type": "string" }, "metrics": { "items": { "enum": [ "loadTime", "firstPaint", "firstContentfulPaint", "firstInputDelay", "largestContentfulPaint", "cumulativeLayoutShift", "interactionToNextPaint" ], "type": "string" }, "type": "array" }, "start": { "format": "date-time", "type": "string" } }, "required": [ "applicationIdentifier", "start", "end", "metrics" ], "type": "object" }
ID: c2w95p6hjh