Datadog · Capability

Datadog API — Value

Datadog API — Value. 2 operations. Lead operation: Datadog Get a Specific Org Config Value. Self-contained Naftiko capability covering one Datadog business surface.

Run with Naftiko DatadogValue

What You Can Do

GET
Getorgconfig — Datadog Get a Specific Org Config Value
/v1/api/v2/org-configs/{org-config-name}
POST
Setondemandconcurrencycap — Datadog Save New Value for On-demand Concurrency Cap
/v1/api/v2/synthetics/settings/on-demand-concurrency-cap

MCP Tools

datadog-get-specific-org-config

Datadog Get a Specific Org Config Value

read-only idempotent
datadog-save-new-value-demand

Datadog Save New Value for On-demand Concurrency Cap

Capability Spec

datadog-value.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Datadog API — Value
  description: 'Datadog API — Value. 2 operations. Lead operation: Datadog Get a Specific Org Config Value. Self-contained
    Naftiko capability covering one Datadog business surface.'
  tags:
  - Datadog
  - Value
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATADOG_API_KEY: DATADOG_API_KEY
capability:
  consumes:
  - type: http
    namespace: datadog-value
    baseUri: https://{subdomain}.{site}
    description: Datadog API — Value business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-org_configs-org_config_name
      path: /api/v2/org_configs/{org_config_name}
      operations:
      - name: getorgconfig
        method: GET
        description: Datadog Get a Specific Org Config Value
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v2-synthetics-settings-on_demand_concurrency_cap
      path: /api/v2/synthetics/settings/on_demand_concurrency_cap
      operations:
      - name: setondemandconcurrencycap
        method: POST
        description: Datadog Save New Value for On-demand Concurrency Cap
        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-value-rest
    port: 8080
    description: REST adapter for Datadog API — Value. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/api/v2/org-configs/{org-config-name}
      name: api-v2-org-configs-org-config-name
      description: REST surface for api-v2-org_configs-org_config_name.
      operations:
      - method: GET
        name: getorgconfig
        description: Datadog Get a Specific Org Config Value
        call: datadog-value.getorgconfig
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/synthetics/settings/on-demand-concurrency-cap
      name: api-v2-synthetics-settings-on-demand-concurrency-cap
      description: REST surface for api-v2-synthetics-settings-on_demand_concurrency_cap.
      operations:
      - method: POST
        name: setondemandconcurrencycap
        description: Datadog Save New Value for On-demand Concurrency Cap
        call: datadog-value.setondemandconcurrencycap
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datadog-value-mcp
    port: 9090
    transport: http
    description: MCP adapter for Datadog API — Value. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: datadog-get-specific-org-config
      description: Datadog Get a Specific Org Config Value
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datadog-value.getorgconfig
      outputParameters:
      - type: object
        mapping: $.
    - name: datadog-save-new-value-demand
      description: Datadog Save New Value for On-demand Concurrency Cap
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: datadog-value.setondemandconcurrencycap
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.