List Service Catalog Items
servicenow_list_catalog_itemsBrowse ServiceNow service catalog items with filters by category, name, or active status. Retrieve names, descriptions, categories, and prices with pagination.
Instructions
Browse available service catalog items.
Args:
query (string): Filter (e.g., 'nameLIKElaptop', 'category.titleLIKEhardware', 'active=true'). Default: all active items.
category (string): Filter by category title (partial match)
limit / offset: Pagination
response_format: Output format
Returns: Catalog items with name, description, category, and price
Examples:
Browse hardware items → category="Hardware"
Find software requests → query="nameLIKEsoftware"
List by category → category="Access & Permissions"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (1–100, default 20) | |
| query | No | Encoded query (default: active items) | active=true |
| offset | No | Number of results to skip for pagination (default 0) | |
| category | No | Filter by category title (partial match) | |
| response_format | No | Output format: 'markdown' (default) for human-readable or 'json' for structured data | markdown |