Kion · Capability

Kion Cloud Operations API — Projects

Kion Cloud Operations API — Projects. 7 operations. Lead operation: Kion List projects. Self-contained Naftiko capability covering one Kion business surface.

Run with Naftiko KionProjects

What You Can Do

GET
Listprojects — Kion List projects
/v1/project
POST
Createproject — Kion Create a project
/v1/project
GET
Getproject — Kion Get a project
/v1/project/{id}
PATCH
Updateproject — Kion Update a project
/v1/project/{id}
DELETE
Deleteproject — Kion Delete a project
/v1/project/{id}
GET
Listprojectnotes — Kion List project notes
/v1/project/{id}/note
POST
Createprojectnote — Kion Create a project note
/v1/project/{id}/note

MCP Tools

kion-list-projects

Kion List projects

read-only idempotent
kion-create-project

Kion Create a project

kion-get-project

Kion Get a project

read-only idempotent
kion-update-project

Kion Update a project

idempotent
kion-delete-project

Kion Delete a project

idempotent
kion-list-project-notes

Kion List project notes

read-only idempotent
kion-create-project-note

Kion Create a project note

Capability Spec

cloud-operations-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Kion Cloud Operations API — Projects
  description: 'Kion Cloud Operations API — Projects. 7 operations. Lead operation: Kion List projects. Self-contained Naftiko
    capability covering one Kion business surface.'
  tags:
  - Kion
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    KION_API_KEY: KION_API_KEY
capability:
  consumes:
  - type: http
    namespace: cloud-operations-projects
    baseUri: https://{kion-instance}/api/v3
    description: Kion Cloud Operations API — Projects business capability. Self-contained, no shared references.
    resources:
    - name: project
      path: /project
      operations:
      - name: listprojects
        method: GET
        description: Kion List projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createproject
        method: POST
        description: Kion Create a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: project-id
      path: /project/{id}
      operations:
      - name: getproject
        method: GET
        description: Kion Get a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateproject
        method: PATCH
        description: Kion Update a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteproject
        method: DELETE
        description: Kion Delete a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: project-id-note
      path: /project/{id}/note
      operations:
      - name: listprojectnotes
        method: GET
        description: Kion List project notes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createprojectnote
        method: POST
        description: Kion Create a project note
        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.KION_API_KEY}}'
  exposes:
  - type: rest
    namespace: cloud-operations-projects-rest
    port: 8080
    description: REST adapter for Kion Cloud Operations API — Projects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/project
      name: project
      description: REST surface for project.
      operations:
      - method: GET
        name: listprojects
        description: Kion List projects
        call: cloud-operations-projects.listprojects
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Kion Create a project
        call: cloud-operations-projects.createproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/project/{id}
      name: project-id
      description: REST surface for project-id.
      operations:
      - method: GET
        name: getproject
        description: Kion Get a project
        call: cloud-operations-projects.getproject
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateproject
        description: Kion Update a project
        call: cloud-operations-projects.updateproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproject
        description: Kion Delete a project
        call: cloud-operations-projects.deleteproject
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/project/{id}/note
      name: project-id-note
      description: REST surface for project-id-note.
      operations:
      - method: GET
        name: listprojectnotes
        description: Kion List project notes
        call: cloud-operations-projects.listprojectnotes
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createprojectnote
        description: Kion Create a project note
        call: cloud-operations-projects.createprojectnote
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cloud-operations-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Kion Cloud Operations API — Projects. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: kion-list-projects
      description: Kion List projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-operations-projects.listprojects
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-create-project
      description: Kion Create a project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloud-operations-projects.createproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-get-project
      description: Kion Get a project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-operations-projects.getproject
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-update-project
      description: Kion Update a project
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: cloud-operations-projects.updateproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-delete-project
      description: Kion Delete a project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: cloud-operations-projects.deleteproject
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-list-project-notes
      description: Kion List project notes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-operations-projects.listprojectnotes
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-create-project-note
      description: Kion Create a project note
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloud-operations-projects.createprojectnote
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.