Incident.io · Capability

Incident.io API — Catalog Types

Incident.io API — Catalog Types. 5 operations. Lead operation: Catalog Types. Self-contained Naftiko capability covering one Incident Io business surface.

Run with Naftiko Incident IoCatalog Types

What You Can Do

GET
Listcatalogtypes — listcatalogtypes
/v1/catalog-types
POST
Createcatalogtype — createcatalogtype
/v1/catalog-types
GET
Getcatalogtype — getcatalogtype
/v1/catalog-types/{id}
PUT
Updatecatalogtype — updatecatalogtype
/v1/catalog-types/{id}
DELETE
Deletecatalogtype — deletecatalogtype
/v1/catalog-types/{id}

MCP Tools

listcatalogtypes

listcatalogtypes

read-only idempotent
createcatalogtype

createcatalogtype

getcatalogtype

getcatalogtype

read-only idempotent
updatecatalogtype

updatecatalogtype

idempotent
deletecatalogtype

deletecatalogtype

idempotent

Capability Spec

incident-io-catalog-types.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Incident.io API — Catalog Types
  description: 'Incident.io API — Catalog Types. 5 operations. Lead operation: Catalog Types. Self-contained Naftiko capability
    covering one Incident Io business surface.'
  tags:
  - Incident Io
  - Catalog Types
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INCIDENT_IO_API_KEY: INCIDENT_IO_API_KEY
capability:
  consumes:
  - type: http
    namespace: incident-io-catalog-types
    baseUri: https://api.incident.io/v2
    description: Incident.io API — Catalog Types business capability. Self-contained, no shared references.
    resources:
    - name: catalog-types
      path: /catalog-types
      operations:
      - name: listcatalogtypes
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcatalogtype
        method: POST
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: catalog-types-id
      path: /catalog-types/{id}
      operations:
      - name: getcatalogtype
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecatalogtype
        method: PUT
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletecatalogtype
        method: DELETE
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.INCIDENT_IO_API_KEY}}'
  exposes:
  - type: rest
    namespace: incident-io-catalog-types-rest
    port: 8080
    description: REST adapter for Incident.io API — Catalog Types. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/catalog-types
      name: catalog-types
      description: REST surface for catalog-types.
      operations:
      - method: GET
        name: listcatalogtypes
        description: listcatalogtypes
        call: incident-io-catalog-types.listcatalogtypes
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcatalogtype
        description: createcatalogtype
        call: incident-io-catalog-types.createcatalogtype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/catalog-types/{id}
      name: catalog-types-id
      description: REST surface for catalog-types-id.
      operations:
      - method: GET
        name: getcatalogtype
        description: getcatalogtype
        call: incident-io-catalog-types.getcatalogtype
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecatalogtype
        description: updatecatalogtype
        call: incident-io-catalog-types.updatecatalogtype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecatalogtype
        description: deletecatalogtype
        call: incident-io-catalog-types.deletecatalogtype
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: incident-io-catalog-types-mcp
    port: 9090
    transport: http
    description: MCP adapter for Incident.io API — Catalog Types. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: listcatalogtypes
      description: listcatalogtypes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: incident-io-catalog-types.listcatalogtypes
      outputParameters:
      - type: object
        mapping: $.
    - name: createcatalogtype
      description: createcatalogtype
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: incident-io-catalog-types.createcatalogtype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: getcatalogtype
      description: getcatalogtype
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: incident-io-catalog-types.getcatalogtype
      outputParameters:
      - type: object
        mapping: $.
    - name: updatecatalogtype
      description: updatecatalogtype
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: incident-io-catalog-types.updatecatalogtype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: deletecatalogtype
      description: deletecatalogtype
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: incident-io-catalog-types.deletecatalogtype
      outputParameters:
      - type: object
        mapping: $.