Raygun MCP Server

Official

list_invitations

Retrieve and manage invitations accessible to the token owner with customizable filtering options like count, offset, and ordering criteria.

Instructions

Returns a list invitations that the token and token owner has access to

Input Schema

NameRequiredDescriptionDefault
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": { "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": [ "emailAddress", "emailAddress desc", "createdAt", "createdAt desc" ], "type": "string" }, "type": "array" } }, "type": "object" }
ID: c2w95p6hjh