Label Studio · Capability

API Reference — subpackage_sso.subpackage_sso/scim

API Reference — subpackage_sso.subpackage_sso/scim. 2 operations. Lead operation: ✨ Retrieve SCIM Settings. Self-contained Naftiko capability covering one Label Studio business surface.

Run with Naftiko Label Studiosubpackage_sso.subpackage_sso/scim

What You Can Do

GET
Get — ✨ Retrieve SCIM Settings
/v1/api/scim/settings
POST
Update — ✨ Update SCIM Settings
/v1/api/scim/settings

MCP Tools

retrieve-scim-settings

✨ Retrieve SCIM Settings

read-only idempotent
update-scim-settings

✨ Update SCIM Settings

Capability Spec

label-studio-subpackage-sso-subpackage-sso-scim.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: API Reference — subpackage_sso.subpackage_sso/scim
  description: 'API Reference — subpackage_sso.subpackage_sso/scim. 2 operations. Lead operation: ✨ Retrieve SCIM Settings.
    Self-contained Naftiko capability covering one Label Studio business surface.'
  tags:
  - Label Studio
  - subpackage_sso.subpackage_sso/scim
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LABEL_STUDIO_API_KEY: LABEL_STUDIO_API_KEY
capability:
  consumes:
  - type: http
    namespace: label-studio-subpackage-sso-subpackage-sso-scim
    baseUri: http://localhost:8000
    description: API Reference — subpackage_sso.subpackage_sso/scim business capability. Self-contained, no shared references.
    resources:
    - name: api-scim-settings
      path: /api/scim/settings
      operations:
      - name: get
        method: GET
        description: ✨ Retrieve SCIM Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
          description: 'The token (or API key) must be passed as a request header. You can find your user token on the User
            Account page in Label Studio. Example: <br><pre><code class='
          required: true
      - name: update
        method: POST
        description: ✨ Update SCIM Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
          description: 'The token (or API key) must be passed as a request header. You can find your user token on the User
            Account page in Label Studio. Example: <br><pre><code class='
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.LABEL_STUDIO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: label-studio-subpackage-sso-subpackage-sso-scim-rest
    port: 8080
    description: REST adapter for API Reference — subpackage_sso.subpackage_sso/scim. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/scim/settings
      name: api-scim-settings
      description: REST surface for api-scim-settings.
      operations:
      - method: GET
        name: get
        description: ✨ Retrieve SCIM Settings
        call: label-studio-subpackage-sso-subpackage-sso-scim.get
        with:
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: update
        description: ✨ Update SCIM Settings
        call: label-studio-subpackage-sso-subpackage-sso-scim.update
        with:
          Authorization: rest.Authorization
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: label-studio-subpackage-sso-subpackage-sso-scim-mcp
    port: 9090
    transport: http
    description: MCP adapter for API Reference — subpackage_sso.subpackage_sso/scim. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: retrieve-scim-settings
      description: ✨ Retrieve SCIM Settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: label-studio-subpackage-sso-subpackage-sso-scim.get
      with:
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.
    - name: update-scim-settings
      description: ✨ Update SCIM Settings
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: label-studio-subpackage-sso-subpackage-sso-scim.update
      with:
        Authorization: tools.Authorization
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.