DatoCMS · Capability

DatoCMS Content Management API — Webhooks

DatoCMS Content Management API — Webhooks. 2 operations. Lead operation: List webhooks. Self-contained Naftiko capability covering one Datocms business surface.

Run with Naftiko DatocmsWebhooks

What You Can Do

GET
Listwebhooks — List webhooks
/v1/webhooks
POST
Createwebhook — Create a webhook
/v1/webhooks

MCP Tools

list-webhooks

List webhooks

read-only idempotent
create-webhook

Create a webhook

Capability Spec

content-management-webhooks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: DatoCMS Content Management API — Webhooks
  description: 'DatoCMS Content Management API — Webhooks. 2 operations. Lead operation: List webhooks. Self-contained Naftiko
    capability covering one Datocms business surface.'
  tags:
  - Datocms
  - Webhooks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATOCMS_API_KEY: DATOCMS_API_KEY
capability:
  consumes:
  - type: http
    namespace: content-management-webhooks
    baseUri: https://site-api.datocms.com
    description: DatoCMS Content Management API — Webhooks business capability. Self-contained, no shared references.
    resources:
    - name: webhooks
      path: /webhooks
      operations:
      - name: listwebhooks
        method: GET
        description: List webhooks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createwebhook
        method: POST
        description: Create a webhook
        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.DATOCMS_API_KEY}}'
  exposes:
  - type: rest
    namespace: content-management-webhooks-rest
    port: 8080
    description: REST adapter for DatoCMS Content Management API — Webhooks. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/webhooks
      name: webhooks
      description: REST surface for webhooks.
      operations:
      - method: GET
        name: listwebhooks
        description: List webhooks
        call: content-management-webhooks.listwebhooks
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createwebhook
        description: Create a webhook
        call: content-management-webhooks.createwebhook
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: content-management-webhooks-mcp
    port: 9090
    transport: http
    description: MCP adapter for DatoCMS Content Management API — Webhooks. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-webhooks
      description: List webhooks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: content-management-webhooks.listwebhooks
      outputParameters:
      - type: object
        mapping: $.
    - name: create-webhook
      description: Create a webhook
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: content-management-webhooks.createwebhook
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.