LangSmith · Capability

LangSmith — integrations

LangSmith — integrations. 2 operations. Lead operation: Get Agent Builder integrations settings. Self-contained Naftiko capability covering one Langsmith business surface.

Run with Naftiko Langsmithintegrations

What You Can Do

GET
Get — Get Agent Builder integrations settings
/v1/v1/agent-builder/integrations
PUT
Put — Update Agent Builder integrations settings
/v1/v1/agent-builder/integrations

MCP Tools

get-agent-builder-integrations-settings

Get Agent Builder integrations settings

read-only idempotent
update-agent-builder-integrations-settings

Update Agent Builder integrations settings

idempotent

Capability Spec

langsmith-integrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: LangSmith — integrations
  description: 'LangSmith — integrations. 2 operations. Lead operation: Get Agent Builder integrations settings. Self-contained
    Naftiko capability covering one Langsmith business surface.'
  tags:
  - Langsmith
  - integrations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LANGSMITH_API_KEY: LANGSMITH_API_KEY
capability:
  consumes:
  - type: http
    namespace: langsmith-integrations
    baseUri: ''
    description: LangSmith — integrations business capability. Self-contained, no shared references.
    resources:
    - name: v1-agent-builder-integrations
      path: /v1/agent-builder/integrations
      operations:
      - name: get
        method: GET
        description: Get Agent Builder integrations settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: put
        method: PUT
        description: Update Agent Builder integrations settings
        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.LANGSMITH_API_KEY}}'
  exposes:
  - type: rest
    namespace: langsmith-integrations-rest
    port: 8080
    description: REST adapter for LangSmith — integrations. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v1/agent-builder/integrations
      name: v1-agent-builder-integrations
      description: REST surface for v1-agent-builder-integrations.
      operations:
      - method: GET
        name: get
        description: Get Agent Builder integrations settings
        call: langsmith-integrations.get
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: put
        description: Update Agent Builder integrations settings
        call: langsmith-integrations.put
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: langsmith-integrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for LangSmith — integrations. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-agent-builder-integrations-settings
      description: Get Agent Builder integrations settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: langsmith-integrations.get
      outputParameters:
      - type: object
        mapping: $.
    - name: update-agent-builder-integrations-settings
      description: Update Agent Builder integrations settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: langsmith-integrations.put
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.