Raygun MCP Server

Official

list_sessions

List sessions for an application

Input Schema

NameRequiredDescriptionDefault
applicationIdentifierYes
countNoLimits the number of items in the response
filterNoFilter items by an expression. Currently only supports filtering by `xhr.uri`. Example: xhr.uri eq https://example.com
offsetNoNumber of items to skip before returning results
orderByNoOrder items by property values

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "applicationIdentifier": { "type": "string" }, "count": { "description": "Limits the number of items in the response", "type": "number" }, "filter": { "description": "Filter items by an expression. Currently only supports filtering by `xhr.uri`. Example: xhr.uri eq https://example.com", "type": "string" }, "offset": { "description": "Number of items to skip before returning results", "type": "number" }, "orderBy": { "description": "Order items by property values", "items": { "enum": [ "customerIdentifier", "customerIdentifier desc", "startedAt", "startedAt desc", "updatedAt", "updatedAt desc", "endedAt", "endedAt desc", "countryCode", "countryCode desc", "platformName", "platformName desc", "operatingSystemName", "operatingSystemName desc", "operatingSystemVersion", "operatingSystemVersion desc", "browserName", "browserName desc", "browserVersion", "browserVersion desc", "viewportWidth", "viewportWidth desc", "viewportHeight", "viewportHeight desc", "deploymentVersion", "deploymentVersion desc" ], "type": "string" }, "type": "array" } }, "required": [ "applicationIdentifier" ], "type": "object" }