Datadog · Capability

Datadog API — Type

Datadog API — Type. 4 operations. Lead operation: Datadog Create an Incident Type. Self-contained Naftiko capability covering one Datadog business surface.

Run with Naftiko DatadogType

What You Can Do

POST
Createincidenttype — Datadog Create an Incident Type
/v1/api/v2/incidents/config/types
DELETE
Deleteincidenttype — Datadog Delete an Incident Type
/v1/api/v2/incidents/config/types/{incident-type-id}
GET
Getincidenttype — Datadog Get Incident Type Details
/v1/api/v2/incidents/config/types/{incident-type-id}
PATCH
Updateincidenttype — Datadog Update an Incident Type
/v1/api/v2/incidents/config/types/{incident-type-id}

MCP Tools

datadog-create-incident-type

Datadog Create an Incident Type

datadog-delete-incident-type

Datadog Delete an Incident Type

idempotent
datadog-get-incident-type-details

Datadog Get Incident Type Details

read-only idempotent
datadog-update-incident-type

Datadog Update an Incident Type

idempotent

Capability Spec

datadog-type.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Datadog API — Type
  description: 'Datadog API — Type. 4 operations. Lead operation: Datadog Create an Incident Type. Self-contained Naftiko
    capability covering one Datadog business surface.'
  tags:
  - Datadog
  - Type
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATADOG_API_KEY: DATADOG_API_KEY
capability:
  consumes:
  - type: http
    namespace: datadog-type
    baseUri: https://{subdomain}.{site}
    description: Datadog API — Type business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-incidents-config-types
      path: /api/v2/incidents/config/types
      operations:
      - name: createincidenttype
        method: POST
        description: Datadog Create an Incident Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v2-incidents-config-types-incident_type_id
      path: /api/v2/incidents/config/types/{incident_type_id}
      operations:
      - name: deleteincidenttype
        method: DELETE
        description: Datadog Delete an Incident Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getincidenttype
        method: GET
        description: Datadog Get Incident Type Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateincidenttype
        method: PATCH
        description: Datadog Update an Incident Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.DATADOG_API_KEY}}'
  exposes:
  - type: rest
    namespace: datadog-type-rest
    port: 8080
    description: REST adapter for Datadog API — Type. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/api/v2/incidents/config/types
      name: api-v2-incidents-config-types
      description: REST surface for api-v2-incidents-config-types.
      operations:
      - method: POST
        name: createincidenttype
        description: Datadog Create an Incident Type
        call: datadog-type.createincidenttype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/incidents/config/types/{incident-type-id}
      name: api-v2-incidents-config-types-incident-type-id
      description: REST surface for api-v2-incidents-config-types-incident_type_id.
      operations:
      - method: DELETE
        name: deleteincidenttype
        description: Datadog Delete an Incident Type
        call: datadog-type.deleteincidenttype
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getincidenttype
        description: Datadog Get Incident Type Details
        call: datadog-type.getincidenttype
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateincidenttype
        description: Datadog Update an Incident Type
        call: datadog-type.updateincidenttype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datadog-type-mcp
    port: 9090
    transport: http
    description: MCP adapter for Datadog API — Type. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: datadog-create-incident-type
      description: Datadog Create an Incident Type
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: datadog-type.createincidenttype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-delete-incident-type
      description: Datadog Delete an Incident Type
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: datadog-type.deleteincidenttype
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-get-incident-type-details
      description: Datadog Get Incident Type Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datadog-type.getincidenttype
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-update-incident-type
      description: Datadog Update an Incident Type
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: datadog-type.updateincidenttype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.