list_changesets
Retrieve and filter changesets in ServiceNow by application, developer, state, timeframe, or custom queries using the MCP server. Streamline tracking and management of changes.
Instructions
List changesets from ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListChangesetsParams": {
"description": "Parameters for listing changesets.",
"properties": {
"application": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by application",
"title": "Application"
},
"developer": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by developer",
"title": "Developer"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"description": "Maximum number of records to return",
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 0,
"description": "Offset to start from",
"title": "Offset"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Additional query string",
"title": "Query"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by state",
"title": "State"
},
"timeframe": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by timeframe (recent, last_week, last_month)",
"title": "Timeframe"
}
},
"title": "ListChangesetsParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/ListChangesetsParams"
}
},
"required": [
"params"
],
"title": "list_changesetsArguments",
"type": "object"
}