Raygun MCP Server

Official

upload_source_map

Uploads a source map to the specified application

Input Schema

NameRequiredDescriptionDefault
applicationIdentifierYesApplication identifier
filePathYesPath to the source map file
uriYesURI to associate with the source map

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "applicationIdentifier": { "description": "Application identifier", "type": "string" }, "filePath": { "description": "Path to the source map file", "type": "string" }, "uri": { "description": "URI to associate with the source map", "format": "uri", "type": "string" } }, "required": [ "applicationIdentifier", "filePath", "uri" ], "type": "object" }