get_catalog_item
Retrieve details of a specific service catalog item using its ID or sys_id from a ServiceNow instance via the ServiceNow MCP Server.
Instructions
Get a specific service catalog item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_id | Yes | Catalog item ID or sys_id |
Input Schema (JSON Schema)
{
"description": "Parameters for getting a specific service catalog item.",
"properties": {
"item_id": {
"description": "Catalog item ID or sys_id",
"title": "Item Id",
"type": "string"
}
},
"required": [
"item_id"
],
"title": "GetCatalogItemParams",
"type": "object"
}