LangChain · Capability

LangSmith — settings

LangSmith — settings. 2 operations. Lead operation: Get Settings. Self-contained Naftiko capability covering one Langchain business surface.

Run with Naftiko Langchainsettings

What You Can Do

GET
Getsettingsapiv1settingsget — Get Settings
/v1/api/v1/settings
POST
Settenanthandleapiv1settingshandlepost — Set Tenant Handle
/v1/api/v1/settings/handle

MCP Tools

get-settings

Get Settings

read-only idempotent
set-tenant-handle

Set Tenant Handle

Capability Spec

langchain-settings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: LangSmith — settings
  description: 'LangSmith — settings. 2 operations. Lead operation: Get Settings. Self-contained Naftiko capability covering
    one Langchain business surface.'
  tags:
  - Langchain
  - settings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LANGCHAIN_API_KEY: LANGCHAIN_API_KEY
capability:
  consumes:
  - type: http
    namespace: langchain-settings
    baseUri: ''
    description: LangSmith — settings business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-settings
      path: /api/v1/settings
      operations:
      - name: getsettingsapiv1settingsget
        method: GET
        description: Get Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v1-settings-handle
      path: /api/v1/settings/handle
      operations:
      - name: settenanthandleapiv1settingshandlepost
        method: POST
        description: Set Tenant Handle
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.LANGCHAIN_API_KEY}}'
  exposes:
  - type: rest
    namespace: langchain-settings-rest
    port: 8080
    description: REST adapter for LangSmith — settings. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/api/v1/settings
      name: api-v1-settings
      description: REST surface for api-v1-settings.
      operations:
      - method: GET
        name: getsettingsapiv1settingsget
        description: Get Settings
        call: langchain-settings.getsettingsapiv1settingsget
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/settings/handle
      name: api-v1-settings-handle
      description: REST surface for api-v1-settings-handle.
      operations:
      - method: POST
        name: settenanthandleapiv1settingshandlepost
        description: Set Tenant Handle
        call: langchain-settings.settenanthandleapiv1settingshandlepost
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: langchain-settings-mcp
    port: 9090
    transport: http
    description: MCP adapter for LangSmith — settings. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-settings
      description: Get Settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: langchain-settings.getsettingsapiv1settingsget
      outputParameters:
      - type: object
        mapping: $.
    - name: set-tenant-handle
      description: Set Tenant Handle
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: langchain-settings.settenanthandleapiv1settingshandlepost
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.