LangSmith · Capability

LangSmith — data_planes

LangSmith — data_planes. 2 operations. Lead operation: List data planes for the current organization. Self-contained Naftiko capability covering one Langsmith business surface.

Run with Naftiko Langsmithdata_planes

What You Can Do

GET
Get — List data planes for the current organization
/v1/orgs/current/data-planes
POST
Post — Create a new data plane
/v1/orgs/current/data-planes

MCP Tools

list-data-planes-current-organization

List data planes for the current organization

read-only idempotent
create-new-data-plane

Create a new data plane

Capability Spec

langsmith-data-planes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: LangSmith — data_planes
  description: 'LangSmith — data_planes. 2 operations. Lead operation: List data planes for the current organization. Self-contained
    Naftiko capability covering one Langsmith business surface.'
  tags:
  - Langsmith
  - data_planes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LANGSMITH_API_KEY: LANGSMITH_API_KEY
capability:
  consumes:
  - type: http
    namespace: langsmith-data-planes
    baseUri: ''
    description: LangSmith — data_planes business capability. Self-contained, no shared references.
    resources:
    - name: orgs-current-data-planes
      path: /orgs/current/data-planes
      operations:
      - name: get
        method: GET
        description: List data planes for the current organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: Create a new data plane
        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-data-planes-rest
    port: 8080
    description: REST adapter for LangSmith — data_planes. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/orgs/current/data-planes
      name: orgs-current-data-planes
      description: REST surface for orgs-current-data-planes.
      operations:
      - method: GET
        name: get
        description: List data planes for the current organization
        call: langsmith-data-planes.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Create a new data plane
        call: langsmith-data-planes.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: langsmith-data-planes-mcp
    port: 9090
    transport: http
    description: MCP adapter for LangSmith — data_planes. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-data-planes-current-organization
      description: List data planes for the current organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: langsmith-data-planes.get
      outputParameters:
      - type: object
        mapping: $.
    - name: create-new-data-plane
      description: Create a new data plane
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: langsmith-data-planes.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.