Raygun MCP Server

Official

permanently_ignore_error_group

Mark an error group as permanently ignored to stop storing new occurrences and prevent them from counting toward your error quota. Requires application and error group identifiers.

Instructions

Set the status of the error group to permanently ignored

Input Schema

NameRequiredDescriptionDefault
applicationIdentifierYesApplication identifier
discardNewOccurrencesYesWhen true, new occurrences of this error will not be stored or count towards your error quota
errorGroupIdentifierYesError group identifier

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "applicationIdentifier": { "description": "Application identifier", "type": "string" }, "discardNewOccurrences": { "description": "When true, new occurrences of this error will not be stored or count towards your error quota", "type": "boolean" }, "errorGroupIdentifier": { "description": "Error group identifier", "type": "string" } }, "required": [ "applicationIdentifier", "errorGroupIdentifier", "discardNewOccurrences" ], "type": "object" }
ID: c2w95p6hjh