TM Forum · Capability

Service Catalog Management — serviceCategory

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

Run with Naftiko Tm ForumserviceCategory

What You Can Do

GET
Listservicecategory — List or find ServiceCategory objects
/v1/servicecategory
POST
Createservicecategory — Creates a ServiceCategory
/v1/servicecategory
GET
Retrieveservicecategory — Retrieves a ServiceCategory by ID
/v1/servicecategory/{id}
PATCH
Patchservicecategory — Updates partially a ServiceCategory
/v1/servicecategory/{id}
DELETE
Deleteservicecategory — Deletes a ServiceCategory
/v1/servicecategory/{id}

MCP Tools

list-find-servicecategory-objects

List or find ServiceCategory objects

read-only idempotent
creates-servicecategory

Creates a ServiceCategory

retrieves-servicecategory-id

Retrieves a ServiceCategory by ID

read-only idempotent
updates-partially-servicecategory

Updates partially a ServiceCategory

idempotent
deletes-servicecategory

Deletes a ServiceCategory

idempotent

Capability Spec

tmf633-service-catalog-servicecategory.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Service Catalog Management — serviceCategory
  description: 'Service Catalog Management — serviceCategory. 5 operations. Lead operation: List or find ServiceCategory objects.
    Self-contained Naftiko capability covering one Tm Forum business surface.'
  tags:
  - Tm Forum
  - serviceCategory
  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-servicecategory
    baseUri: https://serverRoot/tmf-api/serviceCatalogManagement/v4
    description: Service Catalog Management — serviceCategory business capability. Self-contained, no shared references.
    resources:
    - name: serviceCategory
      path: /serviceCategory
      operations:
      - name: listservicecategory
        method: GET
        description: List or find ServiceCategory 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: createservicecategory
        method: POST
        description: Creates a ServiceCategory
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: serviceCategory
          in: body
          type: string
          description: The ServiceCategory to be created
          required: true
    - name: serviceCategory-id
      path: /serviceCategory/{id}
      operations:
      - name: retrieveservicecategory
        method: GET
        description: Retrieves a ServiceCategory by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the ServiceCategory
          required: true
        - name: fields
          in: query
          type: string
          description: Comma-separated properties to provide in response
      - name: patchservicecategory
        method: PATCH
        description: Updates partially a ServiceCategory
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the ServiceCategory
          required: true
        - name: serviceCategory
          in: body
          type: string
          description: The ServiceCategory to be updated
          required: true
      - name: deleteservicecategory
        method: DELETE
        description: Deletes a ServiceCategory
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the ServiceCategory
          required: true
  exposes:
  - type: rest
    namespace: tmf633-service-catalog-servicecategory-rest
    port: 8080
    description: REST adapter for Service Catalog Management — serviceCategory. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/servicecategory
      name: servicecategory
      description: REST surface for serviceCategory.
      operations:
      - method: GET
        name: listservicecategory
        description: List or find ServiceCategory objects
        call: tmf633-service-catalog-servicecategory.listservicecategory
        with:
          fields: rest.fields
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createservicecategory
        description: Creates a ServiceCategory
        call: tmf633-service-catalog-servicecategory.createservicecategory
        with:
          serviceCategory: rest.serviceCategory
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/servicecategory/{id}
      name: servicecategory-id
      description: REST surface for serviceCategory-id.
      operations:
      - method: GET
        name: retrieveservicecategory
        description: Retrieves a ServiceCategory by ID
        call: tmf633-service-catalog-servicecategory.retrieveservicecategory
        with:
          id: rest.id
          fields: rest.fields
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchservicecategory
        description: Updates partially a ServiceCategory
        call: tmf633-service-catalog-servicecategory.patchservicecategory
        with:
          id: rest.id
          serviceCategory: rest.serviceCategory
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteservicecategory
        description: Deletes a ServiceCategory
        call: tmf633-service-catalog-servicecategory.deleteservicecategory
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tmf633-service-catalog-servicecategory-mcp
    port: 9090
    transport: http
    description: MCP adapter for Service Catalog Management — serviceCategory. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-find-servicecategory-objects
      description: List or find ServiceCategory objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf633-service-catalog-servicecategory.listservicecategory
      with:
        fields: tools.fields
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: creates-servicecategory
      description: Creates a ServiceCategory
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tmf633-service-catalog-servicecategory.createservicecategory
      with:
        serviceCategory: tools.serviceCategory
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieves-servicecategory-id
      description: Retrieves a ServiceCategory by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf633-service-catalog-servicecategory.retrieveservicecategory
      with:
        id: tools.id
        fields: tools.fields
      outputParameters:
      - type: object
        mapping: $.
    - name: updates-partially-servicecategory
      description: Updates partially a ServiceCategory
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: tmf633-service-catalog-servicecategory.patchservicecategory
      with:
        id: tools.id
        serviceCategory: tools.serviceCategory
      outputParameters:
      - type: object
        mapping: $.
    - name: deletes-servicecategory
      description: Deletes a ServiceCategory
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tmf633-service-catalog-servicecategory.deleteservicecategory
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.