Raygun MCP Server

Official

resolve_error_group

Set the status of the error group to resolved

Input Schema

NameRequiredDescriptionDefault
applicationIdentifierYesApplication identifier
discardFromPreviousVersionsNoWhen true, occurrences from previous versions will be discarded
errorGroupIdentifierYesError group identifier
versionYesThe version that this error was resolved in

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "applicationIdentifier": { "description": "Application identifier", "type": "string" }, "discardFromPreviousVersions": { "default": true, "description": "When true, occurrences from previous versions will be discarded", "type": "boolean" }, "errorGroupIdentifier": { "description": "Error group identifier", "type": "string" }, "version": { "description": "The version that this error was resolved in", "type": "string" } }, "required": [ "applicationIdentifier", "errorGroupIdentifier", "version" ], "type": "object" }