Datadog · Capability

Datadog API — Batch

Datadog API — Batch. 2 operations. Lead operation: Datadog Mute or Unmute a Batch of Findings. Self-contained Naftiko capability covering one Datadog business surface.

Run with Naftiko DatadogBatch

What You Can Do

PATCH
Mutefindings — Datadog Mute or Unmute a Batch of Findings
/v1/api/v2/posture-management/findings
POST
Createscorecardoutcomesbatch — Datadog Create Outcomes Batch
/v1/api/v2/scorecard/outcomes/batch

MCP Tools

datadog-mute-unmute-batch-findings

Datadog Mute or Unmute a Batch of Findings

idempotent
datadog-create-outcomes-batch

Datadog Create Outcomes Batch

Capability Spec

datadog-batch.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Datadog API — Batch
  description: 'Datadog API — Batch. 2 operations. Lead operation: Datadog Mute or Unmute a Batch of Findings. Self-contained
    Naftiko capability covering one Datadog business surface.'
  tags:
  - Datadog
  - Batch
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATADOG_API_KEY: DATADOG_API_KEY
capability:
  consumes:
  - type: http
    namespace: datadog-batch
    baseUri: https://{subdomain}.{site}
    description: Datadog API — Batch business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-posture_management-findings
      path: /api/v2/posture_management/findings
      operations:
      - name: mutefindings
        method: PATCH
        description: Datadog Mute or Unmute a Batch of Findings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v2-scorecard-outcomes-batch
      path: /api/v2/scorecard/outcomes/batch
      operations:
      - name: createscorecardoutcomesbatch
        method: POST
        description: Datadog Create Outcomes Batch
        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-batch-rest
    port: 8080
    description: REST adapter for Datadog API — Batch. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/api/v2/posture-management/findings
      name: api-v2-posture-management-findings
      description: REST surface for api-v2-posture_management-findings.
      operations:
      - method: PATCH
        name: mutefindings
        description: Datadog Mute or Unmute a Batch of Findings
        call: datadog-batch.mutefindings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/scorecard/outcomes/batch
      name: api-v2-scorecard-outcomes-batch
      description: REST surface for api-v2-scorecard-outcomes-batch.
      operations:
      - method: POST
        name: createscorecardoutcomesbatch
        description: Datadog Create Outcomes Batch
        call: datadog-batch.createscorecardoutcomesbatch
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datadog-batch-mcp
    port: 9090
    transport: http
    description: MCP adapter for Datadog API — Batch. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: datadog-mute-unmute-batch-findings
      description: Datadog Mute or Unmute a Batch of Findings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: datadog-batch.mutefindings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-create-outcomes-batch
      description: Datadog Create Outcomes Batch
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: datadog-batch.createscorecardoutcomesbatch
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.