ServiceNow · Capability

ServiceNow Service Catalog API — Catalogs

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

Run with Naftiko ServicenowCatalogs

What You Can Do

GET
Listcatalogs — Servicenow List Service Catalogs
/v1/servicecatalog/catalogs
GET
Getcatalog — Servicenow Retrieve a Specific Catalog
/v1/servicecatalog/catalogs/{sys-id}

MCP Tools

servicenow-list-service-catalogs

Servicenow List Service Catalogs

read-only idempotent
servicenow-retrieve-specific-catalog

Servicenow Retrieve a Specific Catalog

read-only idempotent

Capability Spec

service-catalog-catalogs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ServiceNow Service Catalog API — Catalogs
  description: 'ServiceNow Service Catalog API — Catalogs. 2 operations. Lead operation: Servicenow List Service Catalogs.
    Self-contained Naftiko capability covering one Servicenow business surface.'
  tags:
  - Servicenow
  - Catalogs
  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-catalogs
    baseUri: https://{instance}.service-now.com/api/sn_sc
    description: ServiceNow Service Catalog API — Catalogs business capability. Self-contained, no shared references.
    resources:
    - name: servicecatalog-catalogs
      path: /servicecatalog/catalogs
      operations:
      - name: listcatalogs
        method: GET
        description: Servicenow List Service Catalogs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sysparm_limit
          in: query
          type: integer
          description: Maximum number of catalogs to return.
        - name: sysparm_offset
          in: query
          type: integer
          description: Starting index for pagination.
    - name: servicecatalog-catalogs-sys_id
      path: /servicecatalog/catalogs/{sys_id}
      operations:
      - name: getcatalog
        method: GET
        description: Servicenow Retrieve a Specific Catalog
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SERVICENOW_API_KEY}}'
  exposes:
  - type: rest
    namespace: service-catalog-catalogs-rest
    port: 8080
    description: REST adapter for ServiceNow Service Catalog API — Catalogs. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/servicecatalog/catalogs
      name: servicecatalog-catalogs
      description: REST surface for servicecatalog-catalogs.
      operations:
      - method: GET
        name: listcatalogs
        description: Servicenow List Service Catalogs
        call: service-catalog-catalogs.listcatalogs
        with:
          sysparm_limit: rest.sysparm_limit
          sysparm_offset: rest.sysparm_offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/servicecatalog/catalogs/{sys-id}
      name: servicecatalog-catalogs-sys-id
      description: REST surface for servicecatalog-catalogs-sys_id.
      operations:
      - method: GET
        name: getcatalog
        description: Servicenow Retrieve a Specific Catalog
        call: service-catalog-catalogs.getcatalog
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: service-catalog-catalogs-mcp
    port: 9090
    transport: http
    description: MCP adapter for ServiceNow Service Catalog API — Catalogs. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: servicenow-list-service-catalogs
      description: Servicenow List Service Catalogs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-catalog-catalogs.listcatalogs
      with:
        sysparm_limit: tools.sysparm_limit
        sysparm_offset: tools.sysparm_offset
      outputParameters:
      - type: object
        mapping: $.
    - name: servicenow-retrieve-specific-catalog
      description: Servicenow Retrieve a Specific Catalog
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-catalog-catalogs.getcatalog
      outputParameters:
      - type: object
        mapping: $.