Cyclr · Capability

Cyclr API — Steps

Cyclr API — Steps. 4 operations. Lead operation: Cyclr Get Step Field Mappings. Self-contained Naftiko capability covering one Cyclr business surface.

Run with Naftiko CyclrSteps

What You Can Do

GET
Getstepfieldmappings — Cyclr Get Step Field Mappings
/v1/steps/{stepid}/fieldmappings
PUT
Updatestepfieldmappings — Cyclr Update Step Field Mappings
/v1/steps/{stepid}/fieldmappings
GET
Getstepparameters — Cyclr Get Step Parameters
/v1/steps/{stepid}/parameters
PUT
Updatestepparameters — Cyclr Update Step Parameters
/v1/steps/{stepid}/parameters

MCP Tools

cyclr-get-step-field-mappings

Cyclr Get Step Field Mappings

read-only idempotent
cyclr-update-step-field-mappings

Cyclr Update Step Field Mappings

idempotent
cyclr-get-step-parameters

Cyclr Get Step Parameters

read-only idempotent
cyclr-update-step-parameters

Cyclr Update Step Parameters

idempotent

Capability Spec

cyclr-steps.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cyclr API — Steps
  description: 'Cyclr API — Steps. 4 operations. Lead operation: Cyclr Get Step Field Mappings. Self-contained Naftiko capability
    covering one Cyclr business surface.'
  tags:
  - Cyclr
  - Steps
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CYCLR_API_KEY: CYCLR_API_KEY
capability:
  consumes:
  - type: http
    namespace: cyclr-steps
    baseUri: https://api.cyclr.com/v1.0
    description: Cyclr API — Steps business capability. Self-contained, no shared references.
    resources:
    - name: steps-stepId-fieldmappings
      path: /steps/{stepId}/fieldmappings
      operations:
      - name: getstepfieldmappings
        method: GET
        description: Cyclr Get Step Field Mappings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatestepfieldmappings
        method: PUT
        description: Cyclr Update Step Field Mappings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: steps-stepId-parameters
      path: /steps/{stepId}/parameters
      operations:
      - name: getstepparameters
        method: GET
        description: Cyclr Get Step Parameters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatestepparameters
        method: PUT
        description: Cyclr Update Step Parameters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.CYCLR_API_KEY}}'
  exposes:
  - type: rest
    namespace: cyclr-steps-rest
    port: 8080
    description: REST adapter for Cyclr API — Steps. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/steps/{stepid}/fieldmappings
      name: steps-stepid-fieldmappings
      description: REST surface for steps-stepId-fieldmappings.
      operations:
      - method: GET
        name: getstepfieldmappings
        description: Cyclr Get Step Field Mappings
        call: cyclr-steps.getstepfieldmappings
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatestepfieldmappings
        description: Cyclr Update Step Field Mappings
        call: cyclr-steps.updatestepfieldmappings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/steps/{stepid}/parameters
      name: steps-stepid-parameters
      description: REST surface for steps-stepId-parameters.
      operations:
      - method: GET
        name: getstepparameters
        description: Cyclr Get Step Parameters
        call: cyclr-steps.getstepparameters
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatestepparameters
        description: Cyclr Update Step Parameters
        call: cyclr-steps.updatestepparameters
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cyclr-steps-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cyclr API — Steps. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: cyclr-get-step-field-mappings
      description: Cyclr Get Step Field Mappings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cyclr-steps.getstepfieldmappings
      outputParameters:
      - type: object
        mapping: $.
    - name: cyclr-update-step-field-mappings
      description: Cyclr Update Step Field Mappings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: cyclr-steps.updatestepfieldmappings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: cyclr-get-step-parameters
      description: Cyclr Get Step Parameters
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cyclr-steps.getstepparameters
      outputParameters:
      - type: object
        mapping: $.
    - name: cyclr-update-step-parameters
      description: Cyclr Update Step Parameters
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: cyclr-steps.updatestepparameters
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.