Incident.io · Capability

Incident.io API — Follow-ups

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

Run with Naftiko Incident IoFollow-ups

What You Can Do

GET
Listfollowups — listfollowups
/v1/follow-ups
GET
Getfollowup — getfollowup
/v1/follow-ups/{id}

MCP Tools

listfollowups

listfollowups

read-only idempotent
getfollowup

getfollowup

read-only idempotent

Capability Spec

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