ServiceNow · Capability

ServiceNow Service Catalog API — Catalog Items

ServiceNow Service Catalog API — Catalog Items. 2 operations. Lead operation: Servicenow List Catalog Items. Self-contained Naftiko capability covering one Servicenow business surface.

Run with Naftiko ServicenowCatalog Items

What You Can Do

GET
Listcatalogitems — Servicenow List Catalog Items
/v1/servicecatalog/items
GET
Getcatalogitem — Servicenow Retrieve a Catalog Item
/v1/servicecatalog/items/{sys-id}

MCP Tools

servicenow-list-catalog-items

Servicenow List Catalog Items

read-only idempotent
servicenow-retrieve-catalog-item

Servicenow Retrieve a Catalog Item

read-only idempotent

Capability Spec

service-catalog-catalog-items.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ServiceNow Service Catalog API — Catalog Items
  description: 'ServiceNow Service Catalog API — Catalog Items. 2 operations. Lead operation: Servicenow List Catalog Items.
    Self-contained Naftiko capability covering one Servicenow business surface.'
  tags:
  - Servicenow
  - Catalog Items
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SERVICENOW_API_KEY: SERVICENOW_API_KEY
capability:
  consumes:
  - type: http
    namespace: service-catalog-catalog-items
    baseUri: https://{instance}.service-now.com/api/sn_sc
    description: ServiceNow Service Catalog API — Catalog Items business capability. Self-contained, no shared references.
    resources:
    - name: servicecatalog-items
      path: /servicecatalog/items
      operations:
      - name: listcatalogitems
        method: GET
        description: Servicenow List Catalog Items
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sysparm_catalog
          in: query
          type: string
          description: The sys_id of the catalog to filter items by.
        - name: sysparm_category
          in: query
          type: string
          description: The sys_id of the category to filter items by.
        - name: sysparm_limit
          in: query
          type: integer
          description: Maximum number of items to return.
        - name: sysparm_offset
          in: query
          type: integer
          description: Starting index for pagination.
    - name: servicecatalog-items-sys_id
      path: /servicecatalog/items/{sys_id}
      operations:
      - name: getcatalogitem
        method: GET
        description: Servicenow Retrieve a Catalog Item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SERVICENOW_API_KEY}}'
  exposes:
  - type: rest
    namespace: service-catalog-catalog-items-rest
    port: 8080
    description: REST adapter for ServiceNow Service Catalog API — Catalog Items. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/servicecatalog/items
      name: servicecatalog-items
      description: REST surface for servicecatalog-items.
      operations:
      - method: GET
        name: listcatalogitems
        description: Servicenow List Catalog Items
        call: service-catalog-catalog-items.listcatalogitems
        with:
          sysparm_catalog: rest.sysparm_catalog
          sysparm_category: rest.sysparm_category
          sysparm_limit: rest.sysparm_limit
          sysparm_offset: rest.sysparm_offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/servicecatalog/items/{sys-id}
      name: servicecatalog-items-sys-id
      description: REST surface for servicecatalog-items-sys_id.
      operations:
      - method: GET
        name: getcatalogitem
        description: Servicenow Retrieve a Catalog Item
        call: service-catalog-catalog-items.getcatalogitem
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: service-catalog-catalog-items-mcp
    port: 9090
    transport: http
    description: MCP adapter for ServiceNow Service Catalog API — Catalog Items. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: servicenow-list-catalog-items
      description: Servicenow List Catalog Items
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-catalog-catalog-items.listcatalogitems
      with:
        sysparm_catalog: tools.sysparm_catalog
        sysparm_category: tools.sysparm_category
        sysparm_limit: tools.sysparm_limit
        sysparm_offset: tools.sysparm_offset
      outputParameters:
      - type: object
        mapping: $.
    - name: servicenow-retrieve-catalog-item
      description: Servicenow Retrieve a Catalog Item
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-catalog-catalog-items.getcatalogitem
      outputParameters:
      - type: object
        mapping: $.