Jetic · Capability

Jetic Platform API — API Specifications

Jetic Platform API — API Specifications. 5 operations. Lead operation: Jetic List API specifications. Self-contained Naftiko capability covering one Jetic business surface.

Run with Naftiko JeticAPI Specifications

What You Can Do

GET
Listapispecifications — Jetic List API specifications
/v1/api-specifications
POST
Createapispecification — Jetic Create or import an API specification
/v1/api-specifications
GET
Getapispecification — Jetic Get an API specification
/v1/api-specifications/{specificationid}
PUT
Updateapispecification — Jetic Update an API specification
/v1/api-specifications/{specificationid}
DELETE
Deleteapispecification — Jetic Delete an API specification
/v1/api-specifications/{specificationid}

MCP Tools

jetic-list-api-specifications

Jetic List API specifications

read-only idempotent
jetic-create-import-api-specification

Jetic Create or import an API specification

jetic-get-api-specification

Jetic Get an API specification

read-only idempotent
jetic-update-api-specification

Jetic Update an API specification

idempotent
jetic-delete-api-specification

Jetic Delete an API specification

idempotent

Capability Spec

platform-api-specifications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Jetic Platform API — API Specifications
  description: 'Jetic Platform API — API Specifications. 5 operations. Lead operation: Jetic List API specifications. Self-contained
    Naftiko capability covering one Jetic business surface.'
  tags:
  - Jetic
  - API Specifications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    JETIC_API_KEY: JETIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-api-specifications
    baseUri: https://app.us1.jetic.io/api/v1
    description: Jetic Platform API — API Specifications business capability. Self-contained, no shared references.
    resources:
    - name: api-specifications
      path: /api-specifications
      operations:
      - name: listapispecifications
        method: GET
        description: Jetic List API specifications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
        - name: limit
          in: query
          type: integer
      - name: createapispecification
        method: POST
        description: Jetic Create or import an API specification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-specifications-specificationId
      path: /api-specifications/{specificationId}
      operations:
      - name: getapispecification
        method: GET
        description: Jetic Get an API specification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateapispecification
        method: PUT
        description: Jetic Update an API specification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteapispecification
        method: DELETE
        description: Jetic Delete an API specification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.JETIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-api-specifications-rest
    port: 8080
    description: REST adapter for Jetic Platform API — API Specifications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api-specifications
      name: api-specifications
      description: REST surface for api-specifications.
      operations:
      - method: GET
        name: listapispecifications
        description: Jetic List API specifications
        call: platform-api-specifications.listapispecifications
        with:
          page: rest.page
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapispecification
        description: Jetic Create or import an API specification
        call: platform-api-specifications.createapispecification
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api-specifications/{specificationid}
      name: api-specifications-specificationid
      description: REST surface for api-specifications-specificationId.
      operations:
      - method: GET
        name: getapispecification
        description: Jetic Get an API specification
        call: platform-api-specifications.getapispecification
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateapispecification
        description: Jetic Update an API specification
        call: platform-api-specifications.updateapispecification
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteapispecification
        description: Jetic Delete an API specification
        call: platform-api-specifications.deleteapispecification
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-api-specifications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Jetic Platform API — API Specifications. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: jetic-list-api-specifications
      description: Jetic List API specifications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-api-specifications.listapispecifications
      with:
        page: tools.page
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-create-import-api-specification
      description: Jetic Create or import an API specification
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-api-specifications.createapispecification
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-get-api-specification
      description: Jetic Get an API specification
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-api-specifications.getapispecification
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-update-api-specification
      description: Jetic Update an API specification
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: platform-api-specifications.updateapispecification
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-delete-api-specification
      description: Jetic Delete an API specification
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: platform-api-specifications.deleteapispecification
      outputParameters:
      - type: object
        mapping: $.