TM Forum · Capability

Service Catalog Management — serviceCatalog

Service Catalog Management — serviceCatalog. 5 operations. Lead operation: List or find ServiceCatalog objects. Self-contained Naftiko capability covering one Tm Forum business surface.

Run with Naftiko Tm ForumserviceCatalog

What You Can Do

GET
Listservicecatalog — List or find ServiceCatalog objects
/v1/servicecatalog
POST
Createservicecatalog — Creates a ServiceCatalog
/v1/servicecatalog
GET
Retrieveservicecatalog — Retrieves a ServiceCatalog by ID
/v1/servicecatalog/{id}
PATCH
Patchservicecatalog — Updates partially a ServiceCatalog
/v1/servicecatalog/{id}
DELETE
Deleteservicecatalog — Deletes a ServiceCatalog
/v1/servicecatalog/{id}

MCP Tools

list-find-servicecatalog-objects

List or find ServiceCatalog objects

read-only idempotent
creates-servicecatalog

Creates a ServiceCatalog

retrieves-servicecatalog-id

Retrieves a ServiceCatalog by ID

read-only idempotent
updates-partially-servicecatalog

Updates partially a ServiceCatalog

idempotent
deletes-servicecatalog

Deletes a ServiceCatalog

idempotent

Capability Spec

tmf633-service-catalog-servicecatalog.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Service Catalog Management — serviceCatalog
  description: 'Service Catalog Management — serviceCatalog. 5 operations. Lead operation: List or find ServiceCatalog objects.
    Self-contained Naftiko capability covering one Tm Forum business surface.'
  tags:
  - Tm Forum
  - serviceCatalog
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TM_FORUM_API_KEY: TM_FORUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: tmf633-service-catalog-servicecatalog
    baseUri: https://serverRoot/tmf-api/serviceCatalogManagement/v4
    description: Service Catalog Management — serviceCatalog business capability. Self-contained, no shared references.
    resources:
    - name: serviceCatalog
      path: /serviceCatalog
      operations:
      - name: listservicecatalog
        method: GET
        description: List or find ServiceCatalog objects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: string
          description: Comma-separated properties to be provided in response
        - name: offset
          in: query
          type: integer
          description: Requested index for start of resources to be provided in response
        - name: limit
          in: query
          type: integer
          description: Requested number of resources to be provided in response
      - name: createservicecatalog
        method: POST
        description: Creates a ServiceCatalog
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: serviceCatalog
          in: body
          type: string
          description: The ServiceCatalog to be created
          required: true
    - name: serviceCatalog-id
      path: /serviceCatalog/{id}
      operations:
      - name: retrieveservicecatalog
        method: GET
        description: Retrieves a ServiceCatalog by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the ServiceCatalog
          required: true
        - name: fields
          in: query
          type: string
          description: Comma-separated properties to provide in response
      - name: patchservicecatalog
        method: PATCH
        description: Updates partially a ServiceCatalog
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the ServiceCatalog
          required: true
        - name: serviceCatalog
          in: body
          type: string
          description: The ServiceCatalog to be updated
          required: true
      - name: deleteservicecatalog
        method: DELETE
        description: Deletes a ServiceCatalog
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the ServiceCatalog
          required: true
  exposes:
  - type: rest
    namespace: tmf633-service-catalog-servicecatalog-rest
    port: 8080
    description: REST adapter for Service Catalog Management — serviceCatalog. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/servicecatalog
      name: servicecatalog
      description: REST surface for serviceCatalog.
      operations:
      - method: GET
        name: listservicecatalog
        description: List or find ServiceCatalog objects
        call: tmf633-service-catalog-servicecatalog.listservicecatalog
        with:
          fields: rest.fields
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createservicecatalog
        description: Creates a ServiceCatalog
        call: tmf633-service-catalog-servicecatalog.createservicecatalog
        with:
          serviceCatalog: rest.serviceCatalog
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/servicecatalog/{id}
      name: servicecatalog-id
      description: REST surface for serviceCatalog-id.
      operations:
      - method: GET
        name: retrieveservicecatalog
        description: Retrieves a ServiceCatalog by ID
        call: tmf633-service-catalog-servicecatalog.retrieveservicecatalog
        with:
          id: rest.id
          fields: rest.fields
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchservicecatalog
        description: Updates partially a ServiceCatalog
        call: tmf633-service-catalog-servicecatalog.patchservicecatalog
        with:
          id: rest.id
          serviceCatalog: rest.serviceCatalog
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteservicecatalog
        description: Deletes a ServiceCatalog
        call: tmf633-service-catalog-servicecatalog.deleteservicecatalog
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tmf633-service-catalog-servicecatalog-mcp
    port: 9090
    transport: http
    description: MCP adapter for Service Catalog Management — serviceCatalog. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-find-servicecatalog-objects
      description: List or find ServiceCatalog objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf633-service-catalog-servicecatalog.listservicecatalog
      with:
        fields: tools.fields
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: creates-servicecatalog
      description: Creates a ServiceCatalog
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tmf633-service-catalog-servicecatalog.createservicecatalog
      with:
        serviceCatalog: tools.serviceCatalog
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieves-servicecatalog-id
      description: Retrieves a ServiceCatalog by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf633-service-catalog-servicecatalog.retrieveservicecatalog
      with:
        id: tools.id
        fields: tools.fields
      outputParameters:
      - type: object
        mapping: $.
    - name: updates-partially-servicecatalog
      description: Updates partially a ServiceCatalog
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: tmf633-service-catalog-servicecatalog.patchservicecatalog
      with:
        id: tools.id
        serviceCatalog: tools.serviceCatalog
      outputParameters:
      - type: object
        mapping: $.
    - name: deletes-servicecatalog
      description: Deletes a ServiceCatalog
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tmf633-service-catalog-servicecatalog.deleteservicecatalog
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.