Datadog · Capability

Datadog API — Objects

Datadog API — Objects. 5 operations. Lead operation: Datadog Get All Service Objects. Self-contained Naftiko capability covering one Datadog business surface.

Run with Naftiko DatadogObjects

What You Can Do

GET
Listopsgenieservices — Datadog Get All Service Objects
/v1/api/v2/integration/opsgenie/services
POST
Createopsgenieservice — Datadog Create a New Service Object
/v1/api/v2/integration/opsgenie/services
DELETE
Deleteopsgenieservice — Datadog Delete a Single Service Object
/v1/api/v2/integration/opsgenie/services/{integration-service-id}
GET
Getopsgenieservice — Datadog Get a Single Service Object
/v1/api/v2/integration/opsgenie/services/{integration-service-id}
PATCH
Updateopsgenieservice — Datadog Update a Single Service Object
/v1/api/v2/integration/opsgenie/services/{integration-service-id}

MCP Tools

datadog-get-all-service-objects

Datadog Get All Service Objects

read-only idempotent
datadog-create-new-service-object

Datadog Create a New Service Object

datadog-delete-single-service-object

Datadog Delete a Single Service Object

idempotent
datadog-get-single-service-object

Datadog Get a Single Service Object

read-only idempotent
datadog-update-single-service-object

Datadog Update a Single Service Object

idempotent

Capability Spec

datadog-objects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Datadog API — Objects
  description: 'Datadog API — Objects. 5 operations. Lead operation: Datadog Get All Service Objects. Self-contained Naftiko
    capability covering one Datadog business surface.'
  tags:
  - Datadog
  - Objects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATADOG_API_KEY: DATADOG_API_KEY
capability:
  consumes:
  - type: http
    namespace: datadog-objects
    baseUri: https://{subdomain}.{site}
    description: Datadog API — Objects business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-integration-opsgenie-services
      path: /api/v2/integration/opsgenie/services
      operations:
      - name: listopsgenieservices
        method: GET
        description: Datadog Get All Service Objects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createopsgenieservice
        method: POST
        description: Datadog Create a New Service Object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v2-integration-opsgenie-services-integration_service_id
      path: /api/v2/integration/opsgenie/services/{integration_service_id}
      operations:
      - name: deleteopsgenieservice
        method: DELETE
        description: Datadog Delete a Single Service Object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getopsgenieservice
        method: GET
        description: Datadog Get a Single Service Object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateopsgenieservice
        method: PATCH
        description: Datadog Update a Single Service Object
        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-objects-rest
    port: 8080
    description: REST adapter for Datadog API — Objects. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/api/v2/integration/opsgenie/services
      name: api-v2-integration-opsgenie-services
      description: REST surface for api-v2-integration-opsgenie-services.
      operations:
      - method: GET
        name: listopsgenieservices
        description: Datadog Get All Service Objects
        call: datadog-objects.listopsgenieservices
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createopsgenieservice
        description: Datadog Create a New Service Object
        call: datadog-objects.createopsgenieservice
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/integration/opsgenie/services/{integration-service-id}
      name: api-v2-integration-opsgenie-services-integration-service-id
      description: REST surface for api-v2-integration-opsgenie-services-integration_service_id.
      operations:
      - method: DELETE
        name: deleteopsgenieservice
        description: Datadog Delete a Single Service Object
        call: datadog-objects.deleteopsgenieservice
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getopsgenieservice
        description: Datadog Get a Single Service Object
        call: datadog-objects.getopsgenieservice
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateopsgenieservice
        description: Datadog Update a Single Service Object
        call: datadog-objects.updateopsgenieservice
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datadog-objects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Datadog API — Objects. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: datadog-get-all-service-objects
      description: Datadog Get All Service Objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datadog-objects.listopsgenieservices
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-create-new-service-object
      description: Datadog Create a New Service Object
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: datadog-objects.createopsgenieservice
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-delete-single-service-object
      description: Datadog Delete a Single Service Object
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: datadog-objects.deleteopsgenieservice
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-get-single-service-object
      description: Datadog Get a Single Service Object
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datadog-objects.getopsgenieservice
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-update-single-service-object
      description: Datadog Update a Single Service Object
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: datadog-objects.updateopsgenieservice
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.