Incident.io · Capability

Incident.io API — Catalog Entries

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

Run with Naftiko Incident IoCatalog Entries

What You Can Do

GET
Listcatalogentries — List catalog entries
/v1/catalog-entries
POST
Createcatalogentry — Create catalog entry
/v1/catalog-entries
GET
Getcatalogentry — getcatalogentry
/v1/catalog-entries/{id}
PUT
Updatecatalogentry — updatecatalogentry
/v1/catalog-entries/{id}
DELETE
Deletecatalogentry — deletecatalogentry
/v1/catalog-entries/{id}

MCP Tools

list-catalog-entries

List catalog entries

read-only idempotent
create-catalog-entry

Create catalog entry

getcatalogentry

getcatalogentry

read-only idempotent
updatecatalogentry

updatecatalogentry

idempotent
deletecatalogentry

deletecatalogentry

idempotent

Capability Spec

incident-io-catalog-entries.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Incident.io API — Catalog Entries
  description: 'Incident.io API — Catalog Entries. 5 operations. Lead operation: List catalog entries. Self-contained Naftiko
    capability covering one Incident Io business surface.'
  tags:
  - Incident Io
  - Catalog Entries
  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-entries
    baseUri: https://api.incident.io/v2
    description: Incident.io API — Catalog Entries business capability. Self-contained, no shared references.
    resources:
    - name: catalog-entries
      path: /catalog-entries
      operations:
      - name: listcatalogentries
        method: GET
        description: List catalog entries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcatalogentry
        method: POST
        description: Create catalog entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: catalog-entries-id
      path: /catalog-entries/{id}
      operations:
      - name: getcatalogentry
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecatalogentry
        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: deletecatalogentry
        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-entries-rest
    port: 8080
    description: REST adapter for Incident.io API — Catalog Entries. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/catalog-entries
      name: catalog-entries
      description: REST surface for catalog-entries.
      operations:
      - method: GET
        name: listcatalogentries
        description: List catalog entries
        call: incident-io-catalog-entries.listcatalogentries
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcatalogentry
        description: Create catalog entry
        call: incident-io-catalog-entries.createcatalogentry
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/catalog-entries/{id}
      name: catalog-entries-id
      description: REST surface for catalog-entries-id.
      operations:
      - method: GET
        name: getcatalogentry
        description: getcatalogentry
        call: incident-io-catalog-entries.getcatalogentry
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecatalogentry
        description: updatecatalogentry
        call: incident-io-catalog-entries.updatecatalogentry
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecatalogentry
        description: deletecatalogentry
        call: incident-io-catalog-entries.deletecatalogentry
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: incident-io-catalog-entries-mcp
    port: 9090
    transport: http
    description: MCP adapter for Incident.io API — Catalog Entries. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-catalog-entries
      description: List catalog entries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: incident-io-catalog-entries.listcatalogentries
      outputParameters:
      - type: object
        mapping: $.
    - name: create-catalog-entry
      description: Create catalog entry
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: incident-io-catalog-entries.createcatalogentry
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: getcatalogentry
      description: getcatalogentry
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: incident-io-catalog-entries.getcatalogentry
      outputParameters:
      - type: object
        mapping: $.
    - name: updatecatalogentry
      description: updatecatalogentry
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: incident-io-catalog-entries.updatecatalogentry
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: deletecatalogentry
      description: deletecatalogentry
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: incident-io-catalog-entries.deletecatalogentry
      outputParameters:
      - type: object
        mapping: $.