Sentry · Capability

Sentry SCIM API — SCIM Teams

Sentry SCIM API — SCIM Teams. 5 operations. Lead operation: Sentry List an organization's paginated teams. Self-contained Naftiko capability covering one Sentry System business surface.

Run with Naftiko Sentry SystemSCIM Teams

What You Can Do

GET
Listscimteams — Sentry List an organization's paginated teams
/v1/organizations/{organization-id-or-slug}/scim/v2/groups
POST
Provisionscimteam — Sentry Provision a new team
/v1/organizations/{organization-id-or-slug}/scim/v2/groups
GET
Queryscimteam — Sentry Query an individual team
/v1/organizations/{organization-id-or-slug}/scim/v2/groups/{scim-group-id}
PATCH
Updatescimteam — Sentry Update a team's attributes
/v1/organizations/{organization-id-or-slug}/scim/v2/groups/{scim-group-id}
DELETE
Deletescimteam — Sentry Delete an individual team
/v1/organizations/{organization-id-or-slug}/scim/v2/groups/{scim-group-id}

MCP Tools

sentry-list-organization-s-paginated-teams

Sentry List an organization's paginated teams

read-only idempotent
sentry-provision-new-team

Sentry Provision a new team

sentry-query-individual-team

Sentry Query an individual team

read-only idempotent
sentry-update-team-s-attributes

Sentry Update a team's attributes

idempotent
sentry-delete-individual-team

Sentry Delete an individual team

idempotent

Capability Spec

sentry-scim-scim-teams.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sentry SCIM API — SCIM Teams
  description: 'Sentry SCIM API — SCIM Teams. 5 operations. Lead operation: Sentry List an organization''s paginated teams.
    Self-contained Naftiko capability covering one Sentry System business surface.'
  tags:
  - Sentry System
  - SCIM Teams
  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-scim-scim-teams
    baseUri: https://sentry.io/api/0
    description: Sentry SCIM API — SCIM Teams business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organization_id_or_slug-scim-v2-Groups
      path: /organizations/{organization_id_or_slug}/scim/v2/Groups
      operations:
      - name: listscimteams
        method: GET
        description: Sentry List an organization's paginated teams
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: startIndex
          in: query
          type: integer
          description: SCIM 1-indexed starting result number.
        - name: count
          in: query
          type: integer
          description: Maximum number of results.
        - name: filter
          in: query
          type: string
          description: SCIM filter expression.
      - name: provisionscimteam
        method: POST
        description: Sentry Provision a new team
        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-scim-v2-Groups-scim_group_id
      path: /organizations/{organization_id_or_slug}/scim/v2/Groups/{scim_group_id}
      operations:
      - name: queryscimteam
        method: GET
        description: Sentry Query an individual team
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatescimteam
        method: PATCH
        description: Sentry Update a team's attributes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletescimteam
        method: DELETE
        description: Sentry Delete an individual team
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SENTRY_SYSTEM_API_KEY}}'
  exposes:
  - type: rest
    namespace: sentry-scim-scim-teams-rest
    port: 8080
    description: REST adapter for Sentry SCIM API — SCIM Teams. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/organizations/{organization-id-or-slug}/scim/v2/groups
      name: organizations-organization-id-or-slug-scim-v2-groups
      description: REST surface for organizations-organization_id_or_slug-scim-v2-Groups.
      operations:
      - method: GET
        name: listscimteams
        description: Sentry List an organization's paginated teams
        call: sentry-scim-scim-teams.listscimteams
        with:
          startIndex: rest.startIndex
          count: rest.count
          filter: rest.filter
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: provisionscimteam
        description: Sentry Provision a new team
        call: sentry-scim-scim-teams.provisionscimteam
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/{organization-id-or-slug}/scim/v2/groups/{scim-group-id}
      name: organizations-organization-id-or-slug-scim-v2-groups-scim-group-id
      description: REST surface for organizations-organization_id_or_slug-scim-v2-Groups-scim_group_id.
      operations:
      - method: GET
        name: queryscimteam
        description: Sentry Query an individual team
        call: sentry-scim-scim-teams.queryscimteam
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatescimteam
        description: Sentry Update a team's attributes
        call: sentry-scim-scim-teams.updatescimteam
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletescimteam
        description: Sentry Delete an individual team
        call: sentry-scim-scim-teams.deletescimteam
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sentry-scim-scim-teams-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sentry SCIM API — SCIM Teams. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: sentry-list-organization-s-paginated-teams
      description: Sentry List an organization's paginated teams
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sentry-scim-scim-teams.listscimteams
      with:
        startIndex: tools.startIndex
        count: tools.count
        filter: tools.filter
      outputParameters:
      - type: object
        mapping: $.
    - name: sentry-provision-new-team
      description: Sentry Provision a new team
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: sentry-scim-scim-teams.provisionscimteam
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: sentry-query-individual-team
      description: Sentry Query an individual team
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sentry-scim-scim-teams.queryscimteam
      outputParameters:
      - type: object
        mapping: $.
    - name: sentry-update-team-s-attributes
      description: Sentry Update a team's attributes
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: sentry-scim-scim-teams.updatescimteam
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: sentry-delete-individual-team
      description: Sentry Delete an individual team
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: sentry-scim-scim-teams.deletescimteam
      outputParameters:
      - type: object
        mapping: $.