Raygun MCP Server

Official

list_customers

Retrieve customer data for an application, including filtering, sorting, and pagination options, using the Raygun MCP Server's API V3 endpoints.

Instructions

List customers for an application

Input Schema

NameRequiredDescriptionDefault
applicationIdentifierYes
countNoLimits the number of items in the response
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" }, "offset": { "description": "Number of items to skip before returning results", "type": "number" }, "orderBy": { "description": "Order items by property values", "items": { "enum": [ "isAnonymous", "isAnonymous desc", "firstSeenAt", "firstSeenAt desc", "lastSeenAt", "lastSeenAt desc" ], "type": "string" }, "type": "array" } }, "required": [ "applicationIdentifier" ], "type": "object" }
ID: c2w95p6hjh