PagerDuty · Capability

PagerDuty API — Alert Grouping Settings

PagerDuty API — Alert Grouping Settings. 5 operations. Lead operation: PagerDuty List alert grouping settings. Self-contained Naftiko capability covering one Pagerduty business surface.

Run with Naftiko PagerdutyAlert Grouping Settings

What You Can Do

GET
Listalertgroupingsettings — PagerDuty List alert grouping settings
/v1/alert-grouping-settings
POST
Postalertgroupingsettings — PagerDuty Create an Alert Grouping Setting
/v1/alert-grouping-settings
GET
Getalertgroupingsetting — PagerDuty Get an Alert Grouping Setting
/v1/alert-grouping-settings/{id}
DELETE
Deletealertgroupingsetting — PagerDuty Delete an Alert Grouping Setting
/v1/alert-grouping-settings/{id}
PUT
Putalertgroupingsetting — PagerDuty Update an Alert Grouping Setting
/v1/alert-grouping-settings/{id}

MCP Tools

pagerduty-list-alert-grouping-settings

PagerDuty List alert grouping settings

read-only idempotent
pagerduty-create-alert-grouping-setting

PagerDuty Create an Alert Grouping Setting

pagerduty-get-alert-grouping-setting

PagerDuty Get an Alert Grouping Setting

read-only idempotent
pagerduty-delete-alert-grouping-setting

PagerDuty Delete an Alert Grouping Setting

idempotent
pagerduty-update-alert-grouping-setting

PagerDuty Update an Alert Grouping Setting

idempotent

Capability Spec

pagerduty-alert-grouping-settings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: PagerDuty API — Alert Grouping Settings
  description: 'PagerDuty API — Alert Grouping Settings. 5 operations. Lead operation: PagerDuty List alert grouping settings.
    Self-contained Naftiko capability covering one Pagerduty business surface.'
  tags:
  - Pagerduty
  - Alert Grouping Settings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PAGERDUTY_API_KEY: PAGERDUTY_API_KEY
capability:
  consumes:
  - type: http
    namespace: pagerduty-alert-grouping-settings
    baseUri: https://api.pagerduty.com
    description: PagerDuty API — Alert Grouping Settings business capability. Self-contained, no shared references.
    resources:
    - name: alert_grouping_settings
      path: /alert_grouping_settings
      operations:
      - name: listalertgroupingsettings
        method: GET
        description: PagerDuty List alert grouping settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: postalertgroupingsettings
        method: POST
        description: PagerDuty Create an Alert Grouping Setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: alert_grouping_settings-id
      path: /alert_grouping_settings/{id}
      operations:
      - name: getalertgroupingsetting
        method: GET
        description: PagerDuty Get an Alert Grouping Setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletealertgroupingsetting
        method: DELETE
        description: PagerDuty Delete an Alert Grouping Setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: putalertgroupingsetting
        method: PUT
        description: PagerDuty Update an Alert Grouping Setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.PAGERDUTY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: pagerduty-alert-grouping-settings-rest
    port: 8080
    description: REST adapter for PagerDuty API — Alert Grouping Settings. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/alert-grouping-settings
      name: alert-grouping-settings
      description: REST surface for alert_grouping_settings.
      operations:
      - method: GET
        name: listalertgroupingsettings
        description: PagerDuty List alert grouping settings
        call: pagerduty-alert-grouping-settings.listalertgroupingsettings
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postalertgroupingsettings
        description: PagerDuty Create an Alert Grouping Setting
        call: pagerduty-alert-grouping-settings.postalertgroupingsettings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/alert-grouping-settings/{id}
      name: alert-grouping-settings-id
      description: REST surface for alert_grouping_settings-id.
      operations:
      - method: GET
        name: getalertgroupingsetting
        description: PagerDuty Get an Alert Grouping Setting
        call: pagerduty-alert-grouping-settings.getalertgroupingsetting
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletealertgroupingsetting
        description: PagerDuty Delete an Alert Grouping Setting
        call: pagerduty-alert-grouping-settings.deletealertgroupingsetting
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putalertgroupingsetting
        description: PagerDuty Update an Alert Grouping Setting
        call: pagerduty-alert-grouping-settings.putalertgroupingsetting
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pagerduty-alert-grouping-settings-mcp
    port: 9090
    transport: http
    description: MCP adapter for PagerDuty API — Alert Grouping Settings. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: pagerduty-list-alert-grouping-settings
      description: PagerDuty List alert grouping settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pagerduty-alert-grouping-settings.listalertgroupingsettings
      outputParameters:
      - type: object
        mapping: $.
    - name: pagerduty-create-alert-grouping-setting
      description: PagerDuty Create an Alert Grouping Setting
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pagerduty-alert-grouping-settings.postalertgroupingsettings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: pagerduty-get-alert-grouping-setting
      description: PagerDuty Get an Alert Grouping Setting
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pagerduty-alert-grouping-settings.getalertgroupingsetting
      outputParameters:
      - type: object
        mapping: $.
    - name: pagerduty-delete-alert-grouping-setting
      description: PagerDuty Delete an Alert Grouping Setting
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: pagerduty-alert-grouping-settings.deletealertgroupingsetting
      outputParameters:
      - type: object
        mapping: $.
    - name: pagerduty-update-alert-grouping-setting
      description: PagerDuty Update an Alert Grouping Setting
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: pagerduty-alert-grouping-settings.putalertgroupingsetting
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.