LangSmith · Capability

LangSmith — playground-settings

LangSmith — playground-settings. 5 operations. Lead operation: List Playground Settings. Self-contained Naftiko capability covering one Langsmith business surface.

Run with Naftiko Langsmithplayground-settings

What You Can Do

GET
Listplaygroundsettingsapiv1playgroundsettingsget — List Playground Settings
/v1/api/v1/playground-settings
POST
Createplaygroundsettingsapiv1playgroundsettingspost — Create Playground Settings
/v1/api/v1/playground-settings
GET
Getplaygroundsettingsapiv1playgroundsettingsplaygroundsettingsidget — Get Playground Settings
/v1/api/v1/playground-settings/{playground-settings-id}
PATCH
Updateplaygroundsettingsapiv1playgroundsettingsplaygroundsettingsidpatch — Update Playground Settings
/v1/api/v1/playground-settings/{playground-settings-id}
DELETE
Deleteplaygroundsettingsapiv1playgroundsettingsplaygroundsettingsiddelete — Delete Playground Settings
/v1/api/v1/playground-settings/{playground-settings-id}

MCP Tools

list-playground-settings

List Playground Settings

read-only idempotent
create-playground-settings

Create Playground Settings

get-playground-settings

Get Playground Settings

read-only idempotent
update-playground-settings

Update Playground Settings

idempotent
delete-playground-settings

Delete Playground Settings

idempotent

Capability Spec

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