ServiceNow MCP Server

by osomai
Verified

approve_change

Submit approvals for change requests in ServiceNow using required fields like change ID, approver ID, and comments to streamline workflow processes.

Instructions

Approve a change request

Input Schema

NameRequiredDescriptionDefault
paramsYes

Input Schema (JSON Schema)

{ "$defs": { "ApproveChangeParams": { "description": "Parameters for approving a change request.", "properties": { "approval_comments": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "Comments for the approval", "title": "Approval Comments" }, "approver_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "ID of the approver", "title": "Approver Id" }, "change_id": { "description": "Change request ID or sys_id", "title": "Change Id", "type": "string" } }, "required": [ "change_id" ], "title": "ApproveChangeParams", "type": "object" } }, "properties": { "params": { "$ref": "#/$defs/ApproveChangeParams" } }, "required": [ "params" ], "title": "approve_changeArguments", "type": "object" }
ID: wfdzusqbvb