commit_changeset
Commit a ServiceNow changeset by specifying its ID and optional message. This tool facilitates tracking and deploying updates within the ServiceNow MCP Server.
Instructions
Commit a changeset in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
changeset_id | Yes | Changeset ID or sys_id | |
commit_message | No | Commit message |
Input Schema (JSON Schema)
{
"description": "Parameters for committing a changeset.",
"properties": {
"changeset_id": {
"description": "Changeset ID or sys_id",
"title": "Changeset Id",
"type": "string"
},
"commit_message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Commit message",
"title": "Commit Message"
}
},
"required": [
"changeset_id"
],
"title": "CommitChangesetParams",
"type": "object"
}