Incident.io · Capability

Incident.io API — Incident Types

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

Run with Naftiko Incident IoIncident Types

What You Can Do

GET
Listincidenttypes — listincidenttypes
/v1/incident-types
GET
Getincidenttype — getincidenttype
/v1/incident-types/{id}

MCP Tools

listincidenttypes

listincidenttypes

read-only idempotent
getincidenttype

getincidenttype

read-only idempotent

Capability Spec

incident-io-incident-types.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Incident.io API — Incident Types
  description: 'Incident.io API — Incident Types. 2 operations. Lead operation: Incident Types. Self-contained Naftiko capability
    covering one Incident Io business surface.'
  tags:
  - Incident Io
  - Incident 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-incident-types
    baseUri: https://api.incident.io/v2
    description: Incident.io API — Incident Types business capability. Self-contained, no shared references.
    resources:
    - name: incident-types
      path: /incident-types
      operations:
      - name: listincidenttypes
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: incident-types-id
      path: /incident-types/{id}
      operations:
      - name: getincidenttype
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.INCIDENT_IO_API_KEY}}'
  exposes:
  - type: rest
    namespace: incident-io-incident-types-rest
    port: 8080
    description: REST adapter for Incident.io API — Incident Types. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/incident-types
      name: incident-types
      description: REST surface for incident-types.
      operations:
      - method: GET
        name: listincidenttypes
        description: listincidenttypes
        call: incident-io-incident-types.listincidenttypes
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/incident-types/{id}
      name: incident-types-id
      description: REST surface for incident-types-id.
      operations:
      - method: GET
        name: getincidenttype
        description: getincidenttype
        call: incident-io-incident-types.getincidenttype
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: incident-io-incident-types-mcp
    port: 9090
    transport: http
    description: MCP adapter for Incident.io API — Incident Types. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: listincidenttypes
      description: listincidenttypes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: incident-io-incident-types.listincidenttypes
      outputParameters:
      - type: object
        mapping: $.
    - name: getincidenttype
      description: getincidenttype
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: incident-io-incident-types.getincidenttype
      outputParameters:
      - type: object
        mapping: $.