Datadog · Capability

Datadog API — Demand

Datadog API — Demand. 3 operations. Lead operation: Datadog Get Aws on Demand Tasks. Self-contained Naftiko capability covering one Datadog business surface.

Run with Naftiko DatadogDemand

What You Can Do

GET
Listawsondemandtasks — Datadog Get Aws on Demand Tasks
/v1/api/v2/agentless-scanning/ondemand/aws
POST
Createawsondemandtask — Datadog Post an Aws on Demand Task
/v1/api/v2/agentless-scanning/ondemand/aws
GET
Getawsondemandtask — Datadog Get Aws on Demand Task by Id
/v1/api/v2/agentless-scanning/ondemand/aws/{task-id}

MCP Tools

datadog-get-aws-demand-tasks

Datadog Get Aws on Demand Tasks

read-only idempotent
datadog-post-aws-demand-task

Datadog Post an Aws on Demand Task

datadog-get-aws-demand-task

Datadog Get Aws on Demand Task by Id

read-only idempotent

Capability Spec

datadog-demand.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Datadog API — Demand
  description: 'Datadog API — Demand. 3 operations. Lead operation: Datadog Get Aws on Demand Tasks. Self-contained Naftiko
    capability covering one Datadog business surface.'
  tags:
  - Datadog
  - Demand
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATADOG_API_KEY: DATADOG_API_KEY
capability:
  consumes:
  - type: http
    namespace: datadog-demand
    baseUri: https://{subdomain}.{site}
    description: Datadog API — Demand business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-agentless_scanning-ondemand-aws
      path: /api/v2/agentless_scanning/ondemand/aws
      operations:
      - name: listawsondemandtasks
        method: GET
        description: Datadog Get Aws on Demand Tasks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createawsondemandtask
        method: POST
        description: Datadog Post an Aws on Demand Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v2-agentless_scanning-ondemand-aws-task_id
      path: /api/v2/agentless_scanning/ondemand/aws/{task_id}
      operations:
      - name: getawsondemandtask
        method: GET
        description: Datadog Get Aws on Demand Task by Id
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.DATADOG_API_KEY}}'
  exposes:
  - type: rest
    namespace: datadog-demand-rest
    port: 8080
    description: REST adapter for Datadog API — Demand. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/api/v2/agentless-scanning/ondemand/aws
      name: api-v2-agentless-scanning-ondemand-aws
      description: REST surface for api-v2-agentless_scanning-ondemand-aws.
      operations:
      - method: GET
        name: listawsondemandtasks
        description: Datadog Get Aws on Demand Tasks
        call: datadog-demand.listawsondemandtasks
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createawsondemandtask
        description: Datadog Post an Aws on Demand Task
        call: datadog-demand.createawsondemandtask
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/agentless-scanning/ondemand/aws/{task-id}
      name: api-v2-agentless-scanning-ondemand-aws-task-id
      description: REST surface for api-v2-agentless_scanning-ondemand-aws-task_id.
      operations:
      - method: GET
        name: getawsondemandtask
        description: Datadog Get Aws on Demand Task by Id
        call: datadog-demand.getawsondemandtask
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datadog-demand-mcp
    port: 9090
    transport: http
    description: MCP adapter for Datadog API — Demand. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: datadog-get-aws-demand-tasks
      description: Datadog Get Aws on Demand Tasks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datadog-demand.listawsondemandtasks
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-post-aws-demand-task
      description: Datadog Post an Aws on Demand Task
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: datadog-demand.createawsondemandtask
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-get-aws-demand-task
      description: Datadog Get Aws on Demand Task by Id
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datadog-demand.getawsondemandtask
      outputParameters:
      - type: object
        mapping: $.