TM Forum · Capability

Resource Catalog Management — resourceCatalog

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

Run with Naftiko Tm ForumresourceCatalog

What You Can Do

GET
Listresourcecatalog — List or find ResourceCatalog objects
/v1/resourcecatalog
POST
Createresourcecatalog — Creates a ResourceCatalog
/v1/resourcecatalog
GET
Retrieveresourcecatalog — Retrieves a ResourceCatalog by ID
/v1/resourcecatalog/{id}
PATCH
Patchresourcecatalog — Updates partially a ResourceCatalog
/v1/resourcecatalog/{id}
DELETE
Deleteresourcecatalog — Deletes a ResourceCatalog
/v1/resourcecatalog/{id}

MCP Tools

list-find-resourcecatalog-objects

List or find ResourceCatalog objects

read-only idempotent
creates-resourcecatalog

Creates a ResourceCatalog

retrieves-resourcecatalog-id

Retrieves a ResourceCatalog by ID

read-only idempotent
updates-partially-resourcecatalog

Updates partially a ResourceCatalog

idempotent
deletes-resourcecatalog

Deletes a ResourceCatalog

idempotent

Capability Spec

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