List Change Requests
servicenow_list_changesList ServiceNow change requests with filters for type, state, and schedule. Find emergency changes, pending approvals, or this week's planned changes.
Instructions
List ServiceNow change requests with filters.
Args:
query (string): Encoded query filter. Default shows all non-closed.
limit / offset: Pagination
response_format: Output format
Common queries:
Emergency changes: 'type=emergency^state!=-3'
This week's scheduled changes: 'start_date>=javascript:gs.beginningOfThisWeek()'
Changes needing approval: 'state=-3'
Normal changes in review: 'type=normal^state=0'
Returns: List of change requests with state, type, and schedule
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (1–100, default 20) | |
| query | No | Encoded query (default: non-closed/non-canceled) | state!=3^state!=4 |
| offset | No | Number of results to skip for pagination (default 0) | |
| response_format | No | Output format: 'markdown' (default) for human-readable or 'json' for structured data | markdown |