Incident.io · Capability

Incident.io API — Actions

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

Run with Naftiko Incident IoActions

What You Can Do

GET
Listactions — List actions
/v1/actions
GET
Getaction — Get a single action
/v1/actions/{id}

MCP Tools

list-actions

List actions

read-only idempotent
get-single-action

Get a single action

read-only idempotent

Capability Spec

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