Raygun MCP Server

Official

update_deployment

Modify deployment details for applications on the Raygun MCP Server, including identifiers, version, SCM info, and timestamps, to ensure accurate tracking and management of deployments.

Instructions

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