get_changeset_details
Retrieve comprehensive details about a specific changeset using the changeset ID. This tool connects to ServiceNow instances via the MCP Server, enabling users to access and analyze changeset information efficiently.
Instructions
Get detailed information about a specific changeset
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"GetChangesetDetailsParams": {
"description": "Parameters for getting changeset details.",
"properties": {
"changeset_id": {
"description": "Changeset ID or sys_id",
"title": "Changeset Id",
"type": "string"
}
},
"required": [
"changeset_id"
],
"title": "GetChangesetDetailsParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/GetChangesetDetailsParams"
}
},
"required": [
"params"
],
"title": "get_changeset_detailsArguments",
"type": "object"
}