Cycloid · Capability

Cycloid HTTP API — ServiceCatalogs

Cycloid HTTP API — ServiceCatalogs. 2 operations. Lead operation: List service catalogs (Stacks). Self-contained Naftiko capability covering one Cycloid business surface.

Run with Naftiko CycloidServiceCatalogs

What You Can Do

GET
Listservicecatalogs — List service catalogs (Stacks)
/v1/organizations/{organization-canonical}/service-catalogs
POST
Createservicecatalog — Create service catalog
/v1/organizations/{organization-canonical}/service-catalogs

MCP Tools

list-service-catalogs-stacks

List service catalogs (Stacks)

read-only idempotent
create-service-catalog

Create service catalog

Capability Spec

cycloid-servicecatalogs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cycloid HTTP API — ServiceCatalogs
  description: 'Cycloid HTTP API — ServiceCatalogs. 2 operations. Lead operation: List service catalogs (Stacks). Self-contained
    Naftiko capability covering one Cycloid business surface.'
  tags:
  - Cycloid
  - ServiceCatalogs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CYCLOID_API_KEY: CYCLOID_API_KEY
capability:
  consumes:
  - type: http
    namespace: cycloid-servicecatalogs
    baseUri: https://http-api.cycloid.io
    description: Cycloid HTTP API — ServiceCatalogs business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organization_canonical-service_catalogs
      path: /organizations/{organization_canonical}/service_catalogs
      operations:
      - name: listservicecatalogs
        method: GET
        description: List service catalogs (Stacks)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createservicecatalog
        method: POST
        description: Create service catalog
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CYCLOID_API_KEY}}'
  exposes:
  - type: rest
    namespace: cycloid-servicecatalogs-rest
    port: 8080
    description: REST adapter for Cycloid HTTP API — ServiceCatalogs. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organizations/{organization-canonical}/service-catalogs
      name: organizations-organization-canonical-service-catalogs
      description: REST surface for organizations-organization_canonical-service_catalogs.
      operations:
      - method: GET
        name: listservicecatalogs
        description: List service catalogs (Stacks)
        call: cycloid-servicecatalogs.listservicecatalogs
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createservicecatalog
        description: Create service catalog
        call: cycloid-servicecatalogs.createservicecatalog
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cycloid-servicecatalogs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cycloid HTTP API — ServiceCatalogs. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-service-catalogs-stacks
      description: List service catalogs (Stacks)
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cycloid-servicecatalogs.listservicecatalogs
      outputParameters:
      - type: object
        mapping: $.
    - name: create-service-catalog
      description: Create service catalog
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cycloid-servicecatalogs.createservicecatalog
      outputParameters:
      - type: object
        mapping: $.