Lucidworks · Capability

Lucidworks Content Chunking API — Chunking

Lucidworks Content Chunking API — Chunking. 2 operations. Lead operation: Get chunking results. Self-contained Naftiko capability covering one Lucidworks business surface.

Run with Naftiko LucidworksChunking

What You Can Do

GET
Getchunkingresults — Get chunking results
/v1/ai/chunk/results/{chunkingid}
POST
Chunktext — Chunk text using the specified chunker
/v1/ai/chunk/{chunker}

MCP Tools

get-chunking-results

Get chunking results

read-only idempotent
chunk-text-using-specified-chunker

Chunk text using the specified chunker

Capability Spec

chunking-chunking.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Lucidworks Content Chunking API — Chunking
  description: 'Lucidworks Content Chunking API — Chunking. 2 operations. Lead operation: Get chunking results. Self-contained
    Naftiko capability covering one Lucidworks business surface.'
  tags:
  - Lucidworks
  - Chunking
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LUCIDWORKS_API_KEY: LUCIDWORKS_API_KEY
capability:
  consumes:
  - type: http
    namespace: chunking-chunking
    baseUri: https://api.lucidworks.ai
    description: Lucidworks Content Chunking API — Chunking business capability. Self-contained, no shared references.
    resources:
    - name: ai-chunk-results-chunkingId
      path: /ai/chunk/results/{chunkingId}
      operations:
      - name: getchunkingresults
        method: GET
        description: Get chunking results
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: chunkingId
          in: path
          type: string
          required: true
    - name: ai-chunk-chunker
      path: /ai/chunk/{chunker}
      operations:
      - name: chunktext
        method: POST
        description: Chunk text using the specified chunker
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: chunker
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.LUCIDWORKS_API_KEY}}'
  exposes:
  - type: rest
    namespace: chunking-chunking-rest
    port: 8080
    description: REST adapter for Lucidworks Content Chunking API — Chunking. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/ai/chunk/results/{chunkingid}
      name: ai-chunk-results-chunkingid
      description: REST surface for ai-chunk-results-chunkingId.
      operations:
      - method: GET
        name: getchunkingresults
        description: Get chunking results
        call: chunking-chunking.getchunkingresults
        with:
          chunkingId: rest.chunkingId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ai/chunk/{chunker}
      name: ai-chunk-chunker
      description: REST surface for ai-chunk-chunker.
      operations:
      - method: POST
        name: chunktext
        description: Chunk text using the specified chunker
        call: chunking-chunking.chunktext
        with:
          chunker: rest.chunker
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: chunking-chunking-mcp
    port: 9090
    transport: http
    description: MCP adapter for Lucidworks Content Chunking API — Chunking. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-chunking-results
      description: Get chunking results
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chunking-chunking.getchunkingresults
      with:
        chunkingId: tools.chunkingId
      outputParameters:
      - type: object
        mapping: $.
    - name: chunk-text-using-specified-chunker
      description: Chunk text using the specified chunker
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: chunking-chunking.chunktext
      with:
        chunker: tools.chunker
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.