Raygun MCP Server

Official

update_deployment

Update deployment details

Input Schema

NameRequiredDescriptionDefault
applicationIdentifierYesApplication identifier
commentNo
deployedAtNo
deploymentIdentifierYesDeployment identifier
emailAddressNo
ownerNameNo
scmIdentifierNo
scmTypeNo
versionNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "applicationIdentifier": { "description": "Application identifier", "type": "string" }, "comment": { "type": "string" }, "deployedAt": { "format": "date-time", "type": "string" }, "deploymentIdentifier": { "description": "Deployment identifier", "type": "string" }, "emailAddress": { "format": "email", "maxLength": 128, "type": "string" }, "ownerName": { "maxLength": 128, "type": "string" }, "scmIdentifier": { "maxLength": 256, "type": "string" }, "scmType": { "enum": [ "gitHub", "gitLab", "azureDevOps", "bitbucket" ], "type": "string" }, "version": { "maxLength": 128, "minLength": 1, "type": "string" } }, "required": [ "applicationIdentifier", "deploymentIdentifier" ], "type": "object" }