Jetic · Capability

Jetic Platform API — Deployments

Jetic Platform API — Deployments. 4 operations. Lead operation: Jetic List deployments. Self-contained Naftiko capability covering one Jetic business surface.

Run with Naftiko JeticDeployments

What You Can Do

GET
Listdeployments — Jetic List deployments
/v1/deployments
GET
Getdeployment — Jetic Get a deployment
/v1/deployments/{deploymentid}
DELETE
Deletedeployment — Jetic Undeploy a deployment
/v1/deployments/{deploymentid}
POST
Deployintegration — Jetic Deploy an integration
/v1/integrations/{integrationid}/deploy

MCP Tools

jetic-list-deployments

Jetic List deployments

read-only idempotent
jetic-get-deployment

Jetic Get a deployment

read-only idempotent
jetic-undeploy-deployment

Jetic Undeploy a deployment

idempotent
jetic-deploy-integration

Jetic Deploy an integration

Capability Spec

platform-deployments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Jetic Platform API — Deployments
  description: 'Jetic Platform API — Deployments. 4 operations. Lead operation: Jetic List deployments. Self-contained Naftiko
    capability covering one Jetic business surface.'
  tags:
  - Jetic
  - Deployments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    JETIC_API_KEY: JETIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-deployments
    baseUri: https://app.us1.jetic.io/api/v1
    description: Jetic Platform API — Deployments business capability. Self-contained, no shared references.
    resources:
    - name: deployments
      path: /deployments
      operations:
      - name: listdeployments
        method: GET
        description: Jetic List deployments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: clusterId
          in: query
          type: string
          description: Filter deployments by cluster.
        - name: status
          in: query
          type: string
          description: Filter by deployment status.
        - name: page
          in: query
          type: integer
        - name: limit
          in: query
          type: integer
    - name: deployments-deploymentId
      path: /deployments/{deploymentId}
      operations:
      - name: getdeployment
        method: GET
        description: Jetic Get a deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletedeployment
        method: DELETE
        description: Jetic Undeploy a deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: integrations-integrationId-deploy
      path: /integrations/{integrationId}/deploy
      operations:
      - name: deployintegration
        method: POST
        description: Jetic Deploy an integration
        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.JETIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-deployments-rest
    port: 8080
    description: REST adapter for Jetic Platform API — Deployments. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/deployments
      name: deployments
      description: REST surface for deployments.
      operations:
      - method: GET
        name: listdeployments
        description: Jetic List deployments
        call: platform-deployments.listdeployments
        with:
          clusterId: rest.clusterId
          status: rest.status
          page: rest.page
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/deployments/{deploymentid}
      name: deployments-deploymentid
      description: REST surface for deployments-deploymentId.
      operations:
      - method: GET
        name: getdeployment
        description: Jetic Get a deployment
        call: platform-deployments.getdeployment
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedeployment
        description: Jetic Undeploy a deployment
        call: platform-deployments.deletedeployment
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/integrations/{integrationid}/deploy
      name: integrations-integrationid-deploy
      description: REST surface for integrations-integrationId-deploy.
      operations:
      - method: POST
        name: deployintegration
        description: Jetic Deploy an integration
        call: platform-deployments.deployintegration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-deployments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Jetic Platform API — Deployments. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: jetic-list-deployments
      description: Jetic List deployments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-deployments.listdeployments
      with:
        clusterId: tools.clusterId
        status: tools.status
        page: tools.page
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-get-deployment
      description: Jetic Get a deployment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-deployments.getdeployment
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-undeploy-deployment
      description: Jetic Undeploy a deployment
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: platform-deployments.deletedeployment
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-deploy-integration
      description: Jetic Deploy an integration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-deployments.deployintegration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.