List Catalog Items
list_catalog_itemsBrowse and search ServiceNow catalog items by name, description, category, or catalog. Filter active items and retrieve details for request submission.
Instructions
List service catalog items from the sc_cat_item table. Supports text search on item name and description, filtering by category, catalog, and active status.
Use this to browse or search for available catalog offerings before getting item details or submitting a request.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| instance | No | The ServiceNow instance auth alias to use. This is the alias configured via `now-sdk auth --add` (e.g., "myinstance", "prod", "test"). The user will typically refer to this by name when saying things like "on my myinstance instance". If not provided, falls back to the SN_AUTH_ALIAS environment variable. | |
| text_search | No | Search catalog items by name or short description (contains match). | |
| category_sys_id | No | Filter items by category sys_id. | |
| catalog_sys_id | No | Filter items by catalog sys_id (sc_catalogs field). | |
| active | No | Filter by active status. Omit to return all. | |
| query | No | Optional encoded query for additional filtering. | |
| limit | No | Maximum number of records to return (default 20). | |
| offset | No | Number of records to skip for pagination (default 0). |