Sentry · Capability

Sentry Integrations API — Data Forwarders

Sentry Integrations API — Data Forwarders. 4 operations. Lead operation: Sentry Retrieve data forwarders for an organization. Self-contained Naftiko capability covering one Sentry System business surface.

Run with Naftiko Sentry SystemData Forwarders

What You Can Do

GET
Listdataforwarders — Sentry Retrieve data forwarders for an organization
/v1/organizations/{organization-id-or-slug}/data-forwarders
POST
Createdataforwarder — Sentry Create a data forwarder for an organization
/v1/organizations/{organization-id-or-slug}/data-forwarders
PUT
Updatedataforwarder — Sentry Update a data forwarder for an organization
/v1/organizations/{organization-id-or-slug}/data-forwarders/{forwarder-id}
DELETE
Deletedataforwarder — Sentry Delete a data forwarder for an organization
/v1/organizations/{organization-id-or-slug}/data-forwarders/{forwarder-id}

MCP Tools

sentry-retrieve-data-forwarders-organization

Sentry Retrieve data forwarders for an organization

read-only idempotent
sentry-create-data-forwarder-organization

Sentry Create a data forwarder for an organization

sentry-update-data-forwarder-organization

Sentry Update a data forwarder for an organization

idempotent
sentry-delete-data-forwarder-organization

Sentry Delete a data forwarder for an organization

idempotent

Capability Spec

sentry-integrations-data-forwarders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sentry Integrations API — Data Forwarders
  description: 'Sentry Integrations API — Data Forwarders. 4 operations. Lead operation: Sentry Retrieve data forwarders for
    an organization. Self-contained Naftiko capability covering one Sentry System business surface.'
  tags:
  - Sentry System
  - Data Forwarders
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SENTRY_SYSTEM_API_KEY: SENTRY_SYSTEM_API_KEY
capability:
  consumes:
  - type: http
    namespace: sentry-integrations-data-forwarders
    baseUri: https://sentry.io/api/0
    description: Sentry Integrations API — Data Forwarders business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organization_id_or_slug-data-forwarders
      path: /organizations/{organization_id_or_slug}/data-forwarders/
      operations:
      - name: listdataforwarders
        method: GET
        description: Sentry Retrieve data forwarders for an organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createdataforwarder
        method: POST
        description: Sentry Create a data forwarder for an organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organizations-organization_id_or_slug-data-forwarders-forwarder_id
      path: /organizations/{organization_id_or_slug}/data-forwarders/{forwarder_id}/
      operations:
      - name: updatedataforwarder
        method: PUT
        description: Sentry Update a data forwarder for an organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: forwarder_id
          in: path
          type: string
          description: The ID of the data forwarder.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletedataforwarder
        method: DELETE
        description: Sentry Delete a data forwarder for an organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: forwarder_id
          in: path
          type: string
          description: The ID of the data forwarder.
          required: true
    authentication:
      type: bearer
      token: '{{env.SENTRY_SYSTEM_API_KEY}}'
  exposes:
  - type: rest
    namespace: sentry-integrations-data-forwarders-rest
    port: 8080
    description: REST adapter for Sentry Integrations API — Data Forwarders. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/organizations/{organization-id-or-slug}/data-forwarders
      name: organizations-organization-id-or-slug-data-forwarders
      description: REST surface for organizations-organization_id_or_slug-data-forwarders.
      operations:
      - method: GET
        name: listdataforwarders
        description: Sentry Retrieve data forwarders for an organization
        call: sentry-integrations-data-forwarders.listdataforwarders
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdataforwarder
        description: Sentry Create a data forwarder for an organization
        call: sentry-integrations-data-forwarders.createdataforwarder
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/{organization-id-or-slug}/data-forwarders/{forwarder-id}
      name: organizations-organization-id-or-slug-data-forwarders-forwarder-id
      description: REST surface for organizations-organization_id_or_slug-data-forwarders-forwarder_id.
      operations:
      - method: PUT
        name: updatedataforwarder
        description: Sentry Update a data forwarder for an organization
        call: sentry-integrations-data-forwarders.updatedataforwarder
        with:
          forwarder_id: rest.forwarder_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedataforwarder
        description: Sentry Delete a data forwarder for an organization
        call: sentry-integrations-data-forwarders.deletedataforwarder
        with:
          forwarder_id: rest.forwarder_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sentry-integrations-data-forwarders-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sentry Integrations API — Data Forwarders. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: sentry-retrieve-data-forwarders-organization
      description: Sentry Retrieve data forwarders for an organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sentry-integrations-data-forwarders.listdataforwarders
      outputParameters:
      - type: object
        mapping: $.
    - name: sentry-create-data-forwarder-organization
      description: Sentry Create a data forwarder for an organization
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: sentry-integrations-data-forwarders.createdataforwarder
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: sentry-update-data-forwarder-organization
      description: Sentry Update a data forwarder for an organization
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: sentry-integrations-data-forwarders.updatedataforwarder
      with:
        forwarder_id: tools.forwarder_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: sentry-delete-data-forwarder-organization
      description: Sentry Delete a data forwarder for an organization
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: sentry-integrations-data-forwarders.deletedataforwarder
      with:
        forwarder_id: tools.forwarder_id
      outputParameters:
      - type: object
        mapping: $.