Datadog · Capability

Datadog API — Owned

Datadog API — Owned. 4 operations. Lead operation: Datadog Get All Application Keys Owned by Current User. Self-contained Naftiko capability covering one Datadog business surface.

Run with Naftiko DatadogOwned

What You Can Do

GET
Listcurrentuserapplicationkeys — Datadog Get All Application Keys Owned by Current User
/v1/api/v2/current-user/application-keys
DELETE
Deletecurrentuserapplicationkey — Datadog Delete an Application Key Owned by Current User
/v1/api/v2/current-user/application-keys/{app-key-id}
GET
Getcurrentuserapplicationkey — Datadog Get One Application Key Owned by Current User
/v1/api/v2/current-user/application-keys/{app-key-id}
PATCH
Updatecurrentuserapplicationkey — Datadog Edit an Application Key Owned by Current User
/v1/api/v2/current-user/application-keys/{app-key-id}

MCP Tools

datadog-get-all-application-keys

Datadog Get All Application Keys Owned by Current User

read-only idempotent
datadog-delete-application-key-owned

Datadog Delete an Application Key Owned by Current User

idempotent
datadog-get-one-application-key

Datadog Get One Application Key Owned by Current User

read-only idempotent
datadog-edit-application-key-owned

Datadog Edit an Application Key Owned by Current User

idempotent

Capability Spec

datadog-owned.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Datadog API — Owned
  description: 'Datadog API — Owned. 4 operations. Lead operation: Datadog Get All Application Keys Owned by Current User.
    Self-contained Naftiko capability covering one Datadog business surface.'
  tags:
  - Datadog
  - Owned
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATADOG_API_KEY: DATADOG_API_KEY
capability:
  consumes:
  - type: http
    namespace: datadog-owned
    baseUri: https://{subdomain}.{site}
    description: Datadog API — Owned business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-current_user-application_keys
      path: /api/v2/current_user/application_keys
      operations:
      - name: listcurrentuserapplicationkeys
        method: GET
        description: Datadog Get All Application Keys Owned by Current User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v2-current_user-application_keys-app_key_id
      path: /api/v2/current_user/application_keys/{app_key_id}
      operations:
      - name: deletecurrentuserapplicationkey
        method: DELETE
        description: Datadog Delete an Application Key Owned by Current User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getcurrentuserapplicationkey
        method: GET
        description: Datadog Get One Application Key Owned by Current User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecurrentuserapplicationkey
        method: PATCH
        description: Datadog Edit an Application Key Owned by Current User
        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-owned-rest
    port: 8080
    description: REST adapter for Datadog API — Owned. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/api/v2/current-user/application-keys
      name: api-v2-current-user-application-keys
      description: REST surface for api-v2-current_user-application_keys.
      operations:
      - method: GET
        name: listcurrentuserapplicationkeys
        description: Datadog Get All Application Keys Owned by Current User
        call: datadog-owned.listcurrentuserapplicationkeys
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/current-user/application-keys/{app-key-id}
      name: api-v2-current-user-application-keys-app-key-id
      description: REST surface for api-v2-current_user-application_keys-app_key_id.
      operations:
      - method: DELETE
        name: deletecurrentuserapplicationkey
        description: Datadog Delete an Application Key Owned by Current User
        call: datadog-owned.deletecurrentuserapplicationkey
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getcurrentuserapplicationkey
        description: Datadog Get One Application Key Owned by Current User
        call: datadog-owned.getcurrentuserapplicationkey
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatecurrentuserapplicationkey
        description: Datadog Edit an Application Key Owned by Current User
        call: datadog-owned.updatecurrentuserapplicationkey
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datadog-owned-mcp
    port: 9090
    transport: http
    description: MCP adapter for Datadog API — Owned. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: datadog-get-all-application-keys
      description: Datadog Get All Application Keys Owned by Current User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datadog-owned.listcurrentuserapplicationkeys
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-delete-application-key-owned
      description: Datadog Delete an Application Key Owned by Current User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: datadog-owned.deletecurrentuserapplicationkey
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-get-one-application-key
      description: Datadog Get One Application Key Owned by Current User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datadog-owned.getcurrentuserapplicationkey
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-edit-application-key-owned
      description: Datadog Edit an Application Key Owned by Current User
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: datadog-owned.updatecurrentuserapplicationkey
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.