Raygun MCP Server

Official

resolve_error_group

Mark an error group as resolved in the Raygun MCP Server by specifying the application, error group, and version. Optionally discard occurrences from previous versions.

Instructions

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" }
ID: c2w95p6hjh