LangSmith · Capability

LangSmith — SCIM Tokens

LangSmith — SCIM Tokens. 5 operations. Lead operation: List SCIM tokens. Self-contained Naftiko capability covering one Langsmith business surface.

Run with Naftiko LangsmithSCIM Tokens

What You Can Do

GET
Get — List SCIM tokens
/v1/v1/platform/orgs/current/scim/tokens
POST
Post — Create a SCIM token
/v1/v1/platform/orgs/current/scim/tokens
GET
Get — Get a SCIM token
/v1/v1/platform/orgs/current/scim/tokens/{scim-token-id}
DELETE
Delete — Delete a SCIM token
/v1/v1/platform/orgs/current/scim/tokens/{scim-token-id}
PATCH
Patch — Update a SCIM token
/v1/v1/platform/orgs/current/scim/tokens/{scim-token-id}

MCP Tools

list-scim-tokens

List SCIM tokens

read-only idempotent
create-scim-token

Create a SCIM token

get-scim-token

Get a SCIM token

read-only idempotent
delete-scim-token

Delete a SCIM token

idempotent
update-scim-token

Update a SCIM token

idempotent

Capability Spec

langsmith-scim-tokens.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: LangSmith — SCIM Tokens
  description: 'LangSmith — SCIM Tokens. 5 operations. Lead operation: List SCIM tokens. Self-contained Naftiko capability
    covering one Langsmith business surface.'
  tags:
  - Langsmith
  - SCIM Tokens
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LANGSMITH_API_KEY: LANGSMITH_API_KEY
capability:
  consumes:
  - type: http
    namespace: langsmith-scim-tokens
    baseUri: ''
    description: LangSmith — SCIM Tokens business capability. Self-contained, no shared references.
    resources:
    - name: v1-platform-orgs-current-scim-tokens
      path: /v1/platform/orgs/current/scim/tokens
      operations:
      - name: get
        method: GET
        description: List SCIM tokens
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: Create a SCIM token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-platform-orgs-current-scim-tokens-scim_token_id
      path: /v1/platform/orgs/current/scim/tokens/{scim_token_id}
      operations:
      - name: get
        method: GET
        description: Get a SCIM token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: scim_token_id
          in: path
          type: string
          description: SCIM Token ID
          required: true
      - name: delete
        method: DELETE
        description: Delete a SCIM token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: scim_token_id
          in: path
          type: string
          description: SCIM Token ID
          required: true
      - name: patch
        method: PATCH
        description: Update a SCIM token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: scim_token_id
          in: path
          type: string
          description: SCIM Token ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.LANGSMITH_API_KEY}}'
  exposes:
  - type: rest
    namespace: langsmith-scim-tokens-rest
    port: 8080
    description: REST adapter for LangSmith — SCIM Tokens. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v1/platform/orgs/current/scim/tokens
      name: v1-platform-orgs-current-scim-tokens
      description: REST surface for v1-platform-orgs-current-scim-tokens.
      operations:
      - method: GET
        name: get
        description: List SCIM tokens
        call: langsmith-scim-tokens.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Create a SCIM token
        call: langsmith-scim-tokens.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/platform/orgs/current/scim/tokens/{scim-token-id}
      name: v1-platform-orgs-current-scim-tokens-scim-token-id
      description: REST surface for v1-platform-orgs-current-scim-tokens-scim_token_id.
      operations:
      - method: GET
        name: get
        description: Get a SCIM token
        call: langsmith-scim-tokens.get
        with:
          scim_token_id: rest.scim_token_id
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: Delete a SCIM token
        call: langsmith-scim-tokens.delete
        with:
          scim_token_id: rest.scim_token_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patch
        description: Update a SCIM token
        call: langsmith-scim-tokens.patch
        with:
          scim_token_id: rest.scim_token_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: langsmith-scim-tokens-mcp
    port: 9090
    transport: http
    description: MCP adapter for LangSmith — SCIM Tokens. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-scim-tokens
      description: List SCIM tokens
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: langsmith-scim-tokens.get
      outputParameters:
      - type: object
        mapping: $.
    - name: create-scim-token
      description: Create a SCIM token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: langsmith-scim-tokens.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-scim-token
      description: Get a SCIM token
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: langsmith-scim-tokens.get
      with:
        scim_token_id: tools.scim_token_id
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-scim-token
      description: Delete a SCIM token
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: langsmith-scim-tokens.delete
      with:
        scim_token_id: tools.scim_token_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-scim-token
      description: Update a SCIM token
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: langsmith-scim-tokens.patch
      with:
        scim_token_id: tools.scim_token_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.